From 23b6284b51abd62140d2972abb7f544fec63f656 Mon Sep 17 00:00:00 2001 From: silversword411 Date: Tue, 11 May 2021 22:55:01 -0400 Subject: [PATCH] Adding comment headers to wip2 --- scripts_wip/Win_AD_Transfer_FSMO_Roles.ps1 | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/scripts_wip/Win_AD_Transfer_FSMO_Roles.ps1 b/scripts_wip/Win_AD_Transfer_FSMO_Roles.ps1 index 4a40df42..05a3cf22 100644 --- a/scripts_wip/Win_AD_Transfer_FSMO_Roles.ps1 +++ b/scripts_wip/Win_AD_Transfer_FSMO_Roles.ps1 @@ -1,4 +1,21 @@ +<# + .SYNOPSIS + I do this + + .DESCRIPTION + I really do a lot of this + + .OUTPUTS + Results are printed to the console. Future releases will support outputting to a log file. + + .NOTES + Change Log + V1.0 Initial release + + Reference Links: www.google.com +#> + # Transfer FSMO Roles to server # Make this machine the FSMO Master role. -Move-ADDirectoryServerOperationMasterRole -Identity $env:computername -OperationMasterRole pdcemulator,ridmaster,infrastructuremaster,schemamaster,domainnamingmaster -Force \ No newline at end of file +Move-ADDirectoryServerOperationMasterRole -Identity $env:computername -OperationMasterRole pdcemulator, ridmaster, infrastructuremaster, schemamaster, domainnamingmaster -Force \ No newline at end of file