This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Starter pipeline | |
# Start with a minimal pipeline that you can customize to build and deploy your code. | |
# Add steps that build, run tests, deploy, and more: | |
# https://aka.ms/yaml | |
trigger: | |
- master | |
pool: | |
vmImage: 'windows-latest' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$creds=Get-Credential | |
$MigrateToSfBOCSV= Import-Csv #CSV Location# | |
$MigrateToSfBOCSV | % { Move-CsUser -Identity $_.Identity -Target sipfed.online.lync.com -Credential $creds -HostedMigrationOverrideUrl https://<SfB URL Here>.online.lync.com/HostedMigration/hostedmigrationService.svc -Confirm:$False | |
Write-host "User " $_.Identity " Migrated OK" -ForegroundColor Green | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<############################################################## | |
If webpage has been updated? Push notification to webhook URL! | |
Created: 17/01/18 | |
By: Karl Smith | |
Version: 0.1 | |
###############################################################> | |
# URL to scrape | |
$url ='URL to scrape' |