I don't get this.
I changed to a powershell script to install wget. First, it worked. Now it isn't working. It gets stuck after this line =>
1435568594,,ui,message, virtualbox-iso: Starting installation process...
1435568594,,ui,message, virtualbox-iso:
1435568594,,ui,message, virtualbox-iso: Handles NPM(K) PM(K) WS(K) VM(M) CPU(s) Id ProcessName
1435568594,,ui,message, virtualbox-iso: ------- ------ ----- ----- ----- ------ -- -----------
1435568594,,ui,message, virtualbox-iso: 0 2 380 116 5 0.00 2372 wget
And is no longer doing anything, although I can see that the CPU is at 100% like a motherf*cker. But I bet you I can leave now, come back in an hour and it would still be stuck there.
Here is the install script:
(New-Object System.Net.WebClient).DownloadFile('
http://downloads.sourceforge.net/gnuwin32/wget-1.11.4-1-setup.exe', 'C:\Windows\Temp\wget.exe')
(New-Object System.Net.WebClient).DownloadFile('
http://downloads.sourceforge.net/sevenzip/7z920-x64.msi', 'C:\Windows\Temp\7zip.msi')
Start-Process -FilePath "C:\Windows\Temp\wget.exe" -ArgumentList "/VERYSILENT" -Wait -PassThru
&msiexec /i "C:\Windows\Temp\7zip.msi" INSTALLDIR='C:\Program Files\7-Zip' /qb
Nothing fancy. :(