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
<# | |
ConfigureWAP.ps1 is passed the username for an account that has local administrator access on the ADFS Server | |
#> | |
param | |
( | |
$AdminUsername | |
) | |
#password for the local administrator account on the ADFS server is encrypted and stored in a local folder | |
#define the directory where the files are stored and the key used to encrypt the password, so that the password |
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
{ | |
"type": "Microsoft.Compute/virtualMachines/extensions", | |
"name": "[concat(parameters('WAP01VMName'),'/InstallWAP')]", | |
"apiVersion": "2015-05-01-preview", | |
"location": "[resourceGroup().location]", | |
"dependsOn": [ | |
"[concat('Microsoft.Compute/virtualMachines/', parameters('WAP01VMName'))]", | |
"[concat('Microsoft.Compute/virtualMachines/',parameters('ADFS01VMName'),'/extensions/ConfigureADFS')]", | |
"[concat('Microsoft.Compute/virtualMachines/',parameters('ADFS02VMName'),'/extensions/AddToADFSFarm')]" | |
], |
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 script will shutdown all servers that are in the @serverlist and are active | |
Changelog | |
Date Author Comments | |
02/06/17 Nivlesh Initial version | |
#> | |
$serverlist = @("Server01","Server02","Server03","Server04","Server05") | |
$server_domainname = "domain.local" |
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
<# | |
Name : Find_MailboxPermissons_Dependencies.ps1 | |
Author: [email protected] | |
SCRIPT IS PROVIDED 'AS IS' WITHOUT ANY WARRANTY OF ANY KIND. | |
Before running any script, please read the entire script to ensure there is nothing in it that will harm your environment | |
Requirements: | |
- Run Roman Zarkar's Export-MailboxPermissions.ps1 (this script is part of the bundle at https://gallery.technet.microsoft.com/scriptcenter/Migrate-Mailbox-Permissions-2f262f8b) | |
and provide locations of the output files MailboxAccess.csv, MailboxFolderDelegate.csv, MaiboxSendAs.csv, MailboxSendOnBehalf.csv |
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
AWSTemplateFormatVersion: 2010-09-09 | |
Description: CloudFormation Template to deploy an EC2 instance and then install ADDS | |
Parameters: | |
Client: | |
Type: String | |
Description: Summation of client name - to allow same pattern to be used across clients | |
Default: Nivlesh Chandra | |
Hostname: | |
Type: String | |
Description: Hostname - maximum 15 characters |
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
Mappings: | |
AMIMap: | |
WindowsServer2012R2Base: | |
"ImageId": "ami-2a9a1655" | |
WindowsServer2016Base: | |
"ImageId": "ami-f0df538f" | |
SubnetMap: | |
us-east-1a: | |
Dev: "subnet-cf2ee1a8" | |
Test: "ssubnet-5f25ea38" |
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
Profile: | |
Type: 'AWS::IAM::InstanceProfile' | |
Properties: | |
Roles: | |
- !Ref HostRole | |
Path: / | |
InstanceProfileName: !Join | |
- '' | |
- - 'instance-profile-' | |
- !Ref S3BucketName |
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
Metadata: | |
'AWS::CloudFormation::Authentication': | |
S3AccessCreds: | |
type: S3 | |
buckets: | |
- !Ref S3BucketName | |
roleName: !Ref HostRole | |
'AWS::CloudFormation::Init': | |
configSets: | |
config: |
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
AWSTemplateFormatVersion: 2010-09-09 | |
Description: CloudFormation Template to deploy an EC2 instance and then install ADDS | |
Parameters: | |
Client: | |
Type: String | |
Description: Summation of client name - to allow same pattern to be used across clients | |
Default: Nivlesh Chandra | |
Hostname: | |
Type: String | |
Description: Hostname - maximum 15 characters |