Showing category results for PowerTip

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
Feb 24, 2016
Post comments count0
Post likes count0

PowerTip: Find DSC resources with PowerShell

Doctor Scripto

Summary: Learn how to find DSC resources with Windows PowerShell.  How can I use Windows PowerShell to find DSC resources that are available in the PowerShell Gallery?  Use the Find-DSCResource command.  

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

PowerTip: Find PowerShell modules that are installed by PowerShell Get command

Doctor Scripto

Summary: Learn how to find modules that were installed by the Windows PowerShell Get command.  How can I use Windows PowerShell to find modules that have been installed by the Get command?  Use the Get-InstalledModule command.

Scripting Guy!Windows PowerShellPowerTip