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
# This is the cmdlet you'll need to edit with your own domain name or email address | |
if(Get-Module MSOnline){ | |
write-host "Module already installed." | |
}else{ | |
Install-Module -Force MSOnline | |
} | |
$ScriptBlock = {Get-AntiPhishPolicy | Set-AntiPhishPolicy -ExcludedDomains "feedback.smileback.io"} | |
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
$data = ConvertFrom-StringData((racadm getniccfg | Select-String "IP Address" ) -join "`n") | |
return $data."IP Address" |
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
<# | |
Adam Hancock - Added VM's in job. | |
.SYNOPSIS | |
Gather Veeam Backup Job Details | |
.DESCRIPTION | |
This script will create a csv file that contains details about each Veeam backup job. | |
This is helpful when you want to ensure consistency when, for example multiple people are creating multiple jobs. |
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
0. Setup Azure git deployments. | |
1. Add .deployment in root. | |
2. Create directory "deployment" and put build-nuxt.cmd in there. | |
3. Add server.js in root. (Note: this will cause Azure to auto-generate you an IISNode web.config, woot!) | |
4. Change start task to `node server.js` or remove it and let Azure do the same automatically. |
NewerOlder