I'm trying to run a command found in this answer. The command is
start /w %SystemRoot%\system32\pkgmgr.exe /ip /m:Windows6.1-KB2506143-x86.cab
Trouble is, it doesn't work for me. Indeed, it returns the following error :
Start-Process : Impossible de trouver un paramètre positionnel acceptant l'argument « /ip ».
Au niveau de ligne : 1 Caractère : 6
+ start <<<< /w C:\Windows\System32\PkgMgr.exe /ip /m:Windows6.1-KB2506143-x64.cab
+ CategoryInfo : InvalidArgument: (:) [Start-Process], ParameterBindingException
+ FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.PowerShell.Commands.StartProcessCommand
As I'm a neophyte to powershell, I'm having troubles understanding the various options. help start gives me a list of parameter, but I found no mention of /w, /ip or /m.
To sum up, I would like to
- be able to run the command
- understand what it does.