Showing archive results for 2016

Feb 27, 2016
Post comments count0
Post likes count0

PowerTip: Enable PerfMon counters for ODBC connection pooling with PowerShell

Doctor Scripto

Summary: Learn how to use Windows PowerShell to enable Windows Performance Monitor counters for ODBC connection pooling.  How can I use Windows PowerShell to enable Windows Performance Monitor (PerfMon) counters so I can troubleshoot Open Database Connectivity (ODBC) connection pooling?  Use the Enable-ODBCPerfCountger cmdlet and specify the platf...

Scripting Guy!Windows PowerShellPowerTip
Feb 26, 2016
Post comments count0
Post likes count0

PowerTip: Use PowerShell to disable constrained delegation

Doctor Scripto

Summary: Learn how to use Windows PowerShell to disable constrained delegation.  How can I use Windows PowerShell to disable constrained delegation authorization so that a user who is remotely connected to a SMB server cannot configure resources?  Use the Disable-SmbDelegation cmdlet, and specify the client and the SMB server, for example: Disable...

Scripting Guy!Windows PowerShellPowerTip
Feb 26, 2016
Post comments count0
Post likes count1

PowerTip: Use PowerShell to disable all scheduled tasks in folder

Doctor Scripto

Summary: Use Windows PowerShell to disable all scheduled tasks in a specific folder.  How can I use Windows PowerShell to disable all scheduled tasks in a particular folder?  Use the Get-ScheduledTask cmdlet to enumerate the scheduled tasks in the folder, and then pipe the objects to the Disable-ScheduledTask cmdlet, for example: Get-ScheduledTask...

Scripting Guy!Windows PowerShellPowerTip
Feb 25, 2016
Post comments count0
Post likes count1

PowerTip: Use PowerShell to disable scheduled task

Doctor Scripto

Summary: Learn how to use Windows PowerShell to disable a scheduled task.  How can I use Windows PowerShell to disable a scheduled task?  Use the Disable-ScheduledTask cmdlet and specify the task name, for example: Disable-ScheduledTask -TaskName "SystemScan"

Scripting Guy!Windows PowerShellPowerTip
Feb 25, 2016
Post comments count0
Post likes count0

PowerTip: Disable plug and play device with PowerShell

Doctor Scripto

Summary: Learn how to disable a plug and play device with Windows PowerShell.  How can I use Windows PowerShell to disable a plug and play device?  Use the Disable-PNPDevice cmdlet and specify the instance ID, for example: Disable-PnpDevice -InstanceID  'USB\VID_5986&;PID_0266&;MI_00\7&;1E5D3568&;0000'

Scripting Guy!Windows PowerShellPowerTip