web-dev-qa-db-ja.com

'msconfig'に相当するPowershell?

'msconfig'を使用して、起動時に起動するプログラム(など)を制御します-同じことを行うPowerShellの方法はありますか?

私は試した:

get-help startup

これにより、次のことが発生します。

Register-PSSessionConfiguration
Get-PSSessionConfiguration     
Set-PSSessionConfiguration     
Enable-PSRemoting              
New-PSSessionConfigurationFile 
New-Service                    
Set-Service                    
Set-WmiInstance                
about_PowerShell.exe           
about_Remote_FAQ               
about_Remote_Troubleshooting   
about_Windows_RT               
about_WS-Management_Cmdlets

「msconfig.exe」(「システム構成」)の「スタートアップ」タブに表示されるものと同等のPowershellリストが必要でした。

私はWindows7を使用しており、Powershell4.0を使用しています。

1
monojohnny

そのような組み込み機能はありませんが、使用できます AutoRunsモジュール

AutoRunsは、ライブインシデント対応を実行し、正当なプログラムやマルウェアが永続性を実現するために使用する可能性のある自動実行アーティファクトを列挙するのに役立つモジュールです。

1
beatcracker