Jump to content
  • entries
    49
  • comments
    120
  • views
    20415

PS Quick-Tip : Download System Center 2012 SP1 Beta using Powershell v3.0!


gvarakis

1370 views

 Share

Εϊπαμε, το Powershell μπορεί να κάνει τα πάντα! Μπορεί ακόμα και να κατεβάσει για κάποιον σε ένα φάκελο όλα τα ξεχωριστά Executables που απαρτίζουν το System Center 2012 SP1 Beta , με τις παρακάτω εντολές :<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

$DestPath = ‘Ε:\Downloads\SystemCenter2012SP1Beta’

$uri = “http://www.microsoft.com/en-us/download/details.aspx?id=34607

MD $DestPath

$url = invoke-webrequest $uri

$url | select -exp links | where {$_.href -like "*.exe"} | select -exp href | foreach{Start-BitsTransfer $_ $DestPath; Start-Sleep –s 30}

Μετά, εσύ κοιμάσαι και η τύχη σου δουλεύει <?xml:namespace prefix = v ns = "urn:schemas-microsoft-com:vml" />

[H]

 DownloadSC2012SP1_1.JPG?psid=1

Και ιδού το αποτέλεσμα ...

DownloadSC2012SP1_2.JPG?psid=1

 Share

0 Comments


Recommended Comments

There are no comments to display.

Guest
Add a comment...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...