Skip to content

Instantly share code, notes, and snippets.

View sameer-kumar's full-sized avatar
🎯
Focusing

Sameer sameer-kumar

🎯
Focusing
View GitHub Profile
function GetUrl() {
param(
[string]$orgUrl,
[hashtable]$header,
[string]$AreaId
)
# Build the URL for calling the org-level Resource Areas REST API for the RM APIs
$orgResourceAreasUrl = [string]::Format("{0}/_apis/resourceAreas/{1}?api-preview=5.0-preview.1", $orgUrl, $AreaId)
@blainbar
blainbar / Endpoint for connecting to the main AirTrafficSim
Last active January 17, 2018 01:26
Endpoint for connecting to the main AirTrafficSim
Endpoint=sb://cloudcitybb.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=Mqk+nflqhFhOW1R/Z2Jr8Rb9vGoxJv9NAgh8VSJnzHQ=;EntityPath=flysim-shared-input-hub
@mgreenegit
mgreenegit / WMF5Latest.ps1
Last active May 23, 2018 19:25
Get latest WMF5 and quietly install, reboot suppressed
# Use shortcode to find latest TechNet download site
$confirmationPage = 'http://www.microsoft.com/en-us/download/' + $((invoke-webrequest 'http://aka.ms/wmf5latest' -UseBasicParsing).links | ? Class -eq 'mscom-link download-button dl' | % href)
# Parse confirmation page and look for URL to file
$directURL = (invoke-webrequest $confirmationPage -UseBasicParsing).Links | ? Class -eq 'mscom-link' | ? href -match 'Win8.1AndW2K12R2-KB3134758-x64.msu' | % href | select -first 1
# Download file to local
$download = invoke-webrequest $directURL -OutFile $env:Temp\wmf5latest.msu
# Install quietly with no reboot
if (test-path $env:Temp\wmf5latest.msu) {
start -wait $env:Temp\wmf5latest.msu -argumentlist '/quiet /norestart'
}