├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── doc-azure-resrouces-dedicated-subnet └── README.md ├── doc-azure-training ├── Data_and_AI_Training.md ├── IoT_Training.md ├── MicrosoftAcademy.md ├── MicrosoftLearn.md ├── OtherResources.md ├── README.md └── files │ ├── image005.png │ ├── image006.png │ ├── image007.png │ ├── image008.jpg │ ├── image009.png │ ├── image010.png │ ├── image011.jpg │ ├── image012.png │ ├── image013.jpg │ ├── image014.png │ ├── image015.jpg │ ├── image016.png │ ├── image017.png │ ├── image018.jpg │ ├── image019.png │ ├── image020.png │ ├── image021.png │ ├── image022.jpg │ ├── image023.png │ ├── image024.jpg │ ├── image025.png │ ├── image026.jpg │ ├── image027.png │ └── image028.jpg ├── psh-B2B-two-tenant-sync ├── B2BSync-MyVars.ps1 ├── B2BSync.ps1 ├── B2BSync_CustomAttributes.ps1 ├── B2BSync_DestSetup.ps1 ├── B2BSync_SourceSetup.ps1 └── README.md ├── psh-BlobDataSync-Workflow ├── BlobSync.ps1 └── README.md ├── psh-GetArmLimitsViaAPI ├── GetArmLimits.ps1 └── README.md ├── psh-ManagedDiskUtils ├── CopyDiskImage_verified.ps1 ├── ManagedDiskCopy.ps1 ├── README.md └── RemoveOrphanedDisks.ps1 ├── psh-RBAC-CopyPaste ├── ApplyRBAC.ps1 ├── CreateDestSPs.ps1 ├── ExtractRBAC.ps1 ├── Utils.ps1 ├── readme.md └── settings.json ├── psh-aad-b2b-batch-invite ├── B2BBatchPSH.ps1 └── README.md ├── psh-b2c-custom-attributes ├── B2C_CustomAttributes.ps1 └── README.md ├── psh-exo-encrypted-mailsend-script ├── Files │ └── mail-flow-rules.png ├── README.md ├── SendEXOMailTest1.ps1 └── SendEXOMailTest2.ps1 ├── psh-poison-queue ├── README.md └── StorageQueueMovePoison.ps1 ├── psh-sql-update-firewall ├── UpdateAllSqlFirewall.ps1 └── readme.md ├── sa-dsml-many-models ├── LICENSE ├── README.md ├── code │ ├── aml_prs │ │ ├── Data_Preparation.ipynb │ │ ├── model_train.py │ │ ├── prediction.py │ │ └── prs_many_models.ipynb │ ├── deployment │ │ ├── 1-sai-create-endpoint.yml │ │ ├── azureml_cli.txt │ │ ├── conda.yml │ │ ├── custom_role.json │ │ ├── main_deployment.ipynb │ │ ├── many_model.yml │ │ ├── prs_1000_dominicks │ │ ├── score.py │ │ ├── test_data.csv │ │ ├── test_data_1000_dominicks.csv │ │ ├── test_data_1002_tropicana.csv │ │ └── test_deployment.ipynb │ ├── spark │ │ └── many_models_spark.ipynb │ ├── swagger.json │ └── util │ │ └── timeseries_utilities.py └── images │ ├── aml_many_models_arch.png │ ├── pandas_udf.png │ └── spark_many_models_arch.png ├── sample-AzGuardRails-Governance ├── AzurePolicy │ ├── audit │ │ ├── Audit-Managed-Disks.json │ │ ├── Audit-PublicIP.json │ │ └── Audit-Resource-Tag.json │ └── deny │ │ ├── Allowed-Locations.json │ │ ├── Prevent-Unmanaged-Disk-Creation.json │ │ └── denyPIP.json ├── CustomRBAC │ ├── JsonExamples │ │ ├── businessAnalysts.json │ │ ├── cloudDevelopers.json │ │ ├── cloudOpsAdmins.json │ │ ├── cloudOpsEngLead.json │ │ ├── digitalSecurity.json │ │ ├── networkAdmins.json │ │ └── suppReaderTickets.json │ ├── PowerShell │ │ ├── AzResourceProviderOperations.ps1 │ │ ├── Built-InRoles.ps1 │ │ ├── CustomRoleAssignment.ps1 │ │ ├── New-AzureRmDef-w-JSON.ps1 │ │ └── RoleTemplate.ps1 │ └── PowerShellRoleExamples │ │ ├── RBACBASA.ps1 │ │ ├── RBACCloudOpsLead.ps1 │ │ ├── RBACCloudOpsNonLead.ps1 │ │ ├── RBACDeveloper.ps1 │ │ ├── RBACDigitalSecurity.ps1 │ │ ├── RBACNetworking.ps1 │ │ └── README.md └── README.md ├── sample-EasyAuth-ClassicASP ├── EasyAuthClassicASP │ ├── default.asp │ ├── dockerfile │ ├── global.asa │ ├── inc │ │ ├── 500-100.asp │ │ └── EasyAuthASP.asp │ └── web.config └── README.md ├── sample-Python-KeyVault-Function ├── README.md ├── init-manual-service-principal.py ├── init-with-msi.py └── requirements.txt ├── sample-UpdateManagement ├── Kusto │ ├── Compliance │ │ ├── NotAssessedHosts.csl │ │ └── UncompliantHosts.csl │ ├── Post Analysis │ │ ├── Host-w-PatchAmountApplied.csl │ │ └── LinWin-PostAnalysis.csl │ ├── Pre-Analysis │ │ ├── Linux-PreAnalysis.csl │ │ └── Windows-PreAnalysis.csl │ └── README.md ├── PowerShell │ ├── ADDS │ │ ├── 01-InitialTask-ADDSSecurityGroups.ps1 │ │ ├── 02-SchedTask-ADDSSecurityGroups.ps1 │ │ └── README.md │ ├── AutomatedComplianceReporting │ │ ├── 01-BearerToken.ps1 │ │ ├── 02-PostAnalysisAutomation.ps1 │ │ ├── 03-PreAnalysisAutomation-Linux.ps1 │ │ ├── 04-PreAnalysisAutomation-Windows.ps1 │ │ └── README.md │ ├── AzureAutomationRunbooks │ │ ├── 3rdPartyPatching │ │ │ ├── 7Zip.ps1 │ │ │ ├── JRE.ps1 │ │ │ ├── VNC.ps1 │ │ │ ├── WinZip.ps1 │ │ │ └── Wireshark.ps1 │ │ ├── Export-RunAsCertificateToHybridWorker.ps1 │ │ ├── README.md │ │ └── RollbackPatches │ │ │ ├── WindowsRollback.ps1 │ │ │ └── linRollBack.py │ ├── GroupSchedule │ │ ├── 01-SvrGrping.ps1 │ │ ├── 02-WinSvrSched.ps1 │ │ ├── 03-LinuxSvrSched.ps1 │ │ └── README.md │ └── UpdateAgentReadiness │ │ ├── 01-BearerToken.ps1 │ │ ├── 02-UpdateAgentReadiness.ps1 │ │ └── README.md ├── README.md └── WSUS Deployment │ ├── README.md │ ├── WSUS30SP2DeployGuide.doc │ └── WSUS30SP2DeployGuide.pdf ├── sample-VMSS-DomainJoin-Arm ├── README.md ├── WindowsVirtualMachineScaleSet.parameters.json └── WindowsVirtualMachineScaleSet_DomainJoin.json └── sample-k8sRefArch ├── README.md ├── apim-appGw ├── README.md ├── aksDeploy.json ├── aksParams.json ├── appGwApimDeploy.json ├── appGwApimParams.json ├── helm-rbac.yaml ├── ingress-internal.yaml └── kubectl-helm-commands.md ├── appGw ├── README.md ├── aksDeploy.json ├── aksParams.json ├── appGwDeploy.json ├── appGwParams.json ├── echo-api.yaml ├── helm-rbac.yaml ├── ingress-internal.yaml └── kubectl-helm-commands.md ├── k8s ├── README.md ├── aksDeploy.json ├── aksParams.json ├── helm-rbac.yaml ├── ingress-internal.yaml └── kubectl-helm-commands.md ├── keyVault ├── PoSH │ ├── createKeyVault.ps1 │ └── generateSecret.ps1 ├── README.md └── armTemplate │ ├── createKeyVault.json │ └── createKeyVaultParams.json └── setup ├── README.md ├── envSetup.md └── generateSshKeys.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/SECURITY.md -------------------------------------------------------------------------------- /doc-azure-resrouces-dedicated-subnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-resrouces-dedicated-subnet/README.md -------------------------------------------------------------------------------- /doc-azure-training/Data_and_AI_Training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/Data_and_AI_Training.md -------------------------------------------------------------------------------- /doc-azure-training/IoT_Training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/IoT_Training.md -------------------------------------------------------------------------------- /doc-azure-training/MicrosoftAcademy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/MicrosoftAcademy.md -------------------------------------------------------------------------------- /doc-azure-training/MicrosoftLearn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/MicrosoftLearn.md -------------------------------------------------------------------------------- /doc-azure-training/OtherResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/OtherResources.md -------------------------------------------------------------------------------- /doc-azure-training/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/README.md -------------------------------------------------------------------------------- /doc-azure-training/files/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image005.png -------------------------------------------------------------------------------- /doc-azure-training/files/image006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image006.png -------------------------------------------------------------------------------- /doc-azure-training/files/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image007.png -------------------------------------------------------------------------------- /doc-azure-training/files/image008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image008.jpg -------------------------------------------------------------------------------- /doc-azure-training/files/image009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image009.png -------------------------------------------------------------------------------- /doc-azure-training/files/image010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image010.png -------------------------------------------------------------------------------- /doc-azure-training/files/image011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image011.jpg -------------------------------------------------------------------------------- /doc-azure-training/files/image012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image012.png -------------------------------------------------------------------------------- /doc-azure-training/files/image013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image013.jpg -------------------------------------------------------------------------------- /doc-azure-training/files/image014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image014.png -------------------------------------------------------------------------------- /doc-azure-training/files/image015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image015.jpg -------------------------------------------------------------------------------- /doc-azure-training/files/image016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image016.png -------------------------------------------------------------------------------- /doc-azure-training/files/image017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image017.png -------------------------------------------------------------------------------- /doc-azure-training/files/image018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image018.jpg -------------------------------------------------------------------------------- /doc-azure-training/files/image019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image019.png -------------------------------------------------------------------------------- /doc-azure-training/files/image020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image020.png -------------------------------------------------------------------------------- /doc-azure-training/files/image021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image021.png -------------------------------------------------------------------------------- /doc-azure-training/files/image022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image022.jpg -------------------------------------------------------------------------------- /doc-azure-training/files/image023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image023.png -------------------------------------------------------------------------------- /doc-azure-training/files/image024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image024.jpg -------------------------------------------------------------------------------- /doc-azure-training/files/image025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image025.png -------------------------------------------------------------------------------- /doc-azure-training/files/image026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image026.jpg -------------------------------------------------------------------------------- /doc-azure-training/files/image027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image027.png -------------------------------------------------------------------------------- /doc-azure-training/files/image028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/doc-azure-training/files/image028.jpg -------------------------------------------------------------------------------- /psh-B2B-two-tenant-sync/B2BSync-MyVars.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-B2B-two-tenant-sync/B2BSync-MyVars.ps1 -------------------------------------------------------------------------------- /psh-B2B-two-tenant-sync/B2BSync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-B2B-two-tenant-sync/B2BSync.ps1 -------------------------------------------------------------------------------- /psh-B2B-two-tenant-sync/B2BSync_CustomAttributes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-B2B-two-tenant-sync/B2BSync_CustomAttributes.ps1 -------------------------------------------------------------------------------- /psh-B2B-two-tenant-sync/B2BSync_DestSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-B2B-two-tenant-sync/B2BSync_DestSetup.ps1 -------------------------------------------------------------------------------- /psh-B2B-two-tenant-sync/B2BSync_SourceSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-B2B-two-tenant-sync/B2BSync_SourceSetup.ps1 -------------------------------------------------------------------------------- /psh-B2B-two-tenant-sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-B2B-two-tenant-sync/README.md -------------------------------------------------------------------------------- /psh-BlobDataSync-Workflow/BlobSync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-BlobDataSync-Workflow/BlobSync.ps1 -------------------------------------------------------------------------------- /psh-BlobDataSync-Workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-BlobDataSync-Workflow/README.md -------------------------------------------------------------------------------- /psh-GetArmLimitsViaAPI/GetArmLimits.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-GetArmLimitsViaAPI/GetArmLimits.ps1 -------------------------------------------------------------------------------- /psh-GetArmLimitsViaAPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-GetArmLimitsViaAPI/README.md -------------------------------------------------------------------------------- /psh-ManagedDiskUtils/CopyDiskImage_verified.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-ManagedDiskUtils/CopyDiskImage_verified.ps1 -------------------------------------------------------------------------------- /psh-ManagedDiskUtils/ManagedDiskCopy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-ManagedDiskUtils/ManagedDiskCopy.ps1 -------------------------------------------------------------------------------- /psh-ManagedDiskUtils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-ManagedDiskUtils/README.md -------------------------------------------------------------------------------- /psh-ManagedDiskUtils/RemoveOrphanedDisks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-ManagedDiskUtils/RemoveOrphanedDisks.ps1 -------------------------------------------------------------------------------- /psh-RBAC-CopyPaste/ApplyRBAC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-RBAC-CopyPaste/ApplyRBAC.ps1 -------------------------------------------------------------------------------- /psh-RBAC-CopyPaste/CreateDestSPs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-RBAC-CopyPaste/CreateDestSPs.ps1 -------------------------------------------------------------------------------- /psh-RBAC-CopyPaste/ExtractRBAC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-RBAC-CopyPaste/ExtractRBAC.ps1 -------------------------------------------------------------------------------- /psh-RBAC-CopyPaste/Utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-RBAC-CopyPaste/Utils.ps1 -------------------------------------------------------------------------------- /psh-RBAC-CopyPaste/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-RBAC-CopyPaste/readme.md -------------------------------------------------------------------------------- /psh-RBAC-CopyPaste/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-RBAC-CopyPaste/settings.json -------------------------------------------------------------------------------- /psh-aad-b2b-batch-invite/B2BBatchPSH.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-aad-b2b-batch-invite/B2BBatchPSH.ps1 -------------------------------------------------------------------------------- /psh-aad-b2b-batch-invite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-aad-b2b-batch-invite/README.md -------------------------------------------------------------------------------- /psh-b2c-custom-attributes/B2C_CustomAttributes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-b2c-custom-attributes/B2C_CustomAttributes.ps1 -------------------------------------------------------------------------------- /psh-b2c-custom-attributes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-b2c-custom-attributes/README.md -------------------------------------------------------------------------------- /psh-exo-encrypted-mailsend-script/Files/mail-flow-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-exo-encrypted-mailsend-script/Files/mail-flow-rules.png -------------------------------------------------------------------------------- /psh-exo-encrypted-mailsend-script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-exo-encrypted-mailsend-script/README.md -------------------------------------------------------------------------------- /psh-exo-encrypted-mailsend-script/SendEXOMailTest1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-exo-encrypted-mailsend-script/SendEXOMailTest1.ps1 -------------------------------------------------------------------------------- /psh-exo-encrypted-mailsend-script/SendEXOMailTest2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-exo-encrypted-mailsend-script/SendEXOMailTest2.ps1 -------------------------------------------------------------------------------- /psh-poison-queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-poison-queue/README.md -------------------------------------------------------------------------------- /psh-poison-queue/StorageQueueMovePoison.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-poison-queue/StorageQueueMovePoison.ps1 -------------------------------------------------------------------------------- /psh-sql-update-firewall/UpdateAllSqlFirewall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-sql-update-firewall/UpdateAllSqlFirewall.ps1 -------------------------------------------------------------------------------- /psh-sql-update-firewall/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/psh-sql-update-firewall/readme.md -------------------------------------------------------------------------------- /sa-dsml-many-models/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/LICENSE -------------------------------------------------------------------------------- /sa-dsml-many-models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/README.md -------------------------------------------------------------------------------- /sa-dsml-many-models/code/aml_prs/Data_Preparation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/aml_prs/Data_Preparation.ipynb -------------------------------------------------------------------------------- /sa-dsml-many-models/code/aml_prs/model_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/aml_prs/model_train.py -------------------------------------------------------------------------------- /sa-dsml-many-models/code/aml_prs/prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/aml_prs/prediction.py -------------------------------------------------------------------------------- /sa-dsml-many-models/code/aml_prs/prs_many_models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/aml_prs/prs_many_models.ipynb -------------------------------------------------------------------------------- /sa-dsml-many-models/code/deployment/1-sai-create-endpoint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/deployment/1-sai-create-endpoint.yml -------------------------------------------------------------------------------- /sa-dsml-many-models/code/deployment/azureml_cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/deployment/azureml_cli.txt -------------------------------------------------------------------------------- /sa-dsml-many-models/code/deployment/conda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/deployment/conda.yml -------------------------------------------------------------------------------- /sa-dsml-many-models/code/deployment/custom_role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/deployment/custom_role.json -------------------------------------------------------------------------------- /sa-dsml-many-models/code/deployment/main_deployment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/deployment/main_deployment.ipynb -------------------------------------------------------------------------------- /sa-dsml-many-models/code/deployment/many_model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/deployment/many_model.yml -------------------------------------------------------------------------------- /sa-dsml-many-models/code/deployment/prs_1000_dominicks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/deployment/prs_1000_dominicks -------------------------------------------------------------------------------- /sa-dsml-many-models/code/deployment/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/deployment/score.py -------------------------------------------------------------------------------- /sa-dsml-many-models/code/deployment/test_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/deployment/test_data.csv -------------------------------------------------------------------------------- /sa-dsml-many-models/code/deployment/test_data_1000_dominicks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/deployment/test_data_1000_dominicks.csv -------------------------------------------------------------------------------- /sa-dsml-many-models/code/deployment/test_data_1002_tropicana.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/deployment/test_data_1002_tropicana.csv -------------------------------------------------------------------------------- /sa-dsml-many-models/code/deployment/test_deployment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/deployment/test_deployment.ipynb -------------------------------------------------------------------------------- /sa-dsml-many-models/code/spark/many_models_spark.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/spark/many_models_spark.ipynb -------------------------------------------------------------------------------- /sa-dsml-many-models/code/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/swagger.json -------------------------------------------------------------------------------- /sa-dsml-many-models/code/util/timeseries_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/code/util/timeseries_utilities.py -------------------------------------------------------------------------------- /sa-dsml-many-models/images/aml_many_models_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/images/aml_many_models_arch.png -------------------------------------------------------------------------------- /sa-dsml-many-models/images/pandas_udf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/images/pandas_udf.png -------------------------------------------------------------------------------- /sa-dsml-many-models/images/spark_many_models_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sa-dsml-many-models/images/spark_many_models_arch.png -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/AzurePolicy/audit/Audit-Managed-Disks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/AzurePolicy/audit/Audit-Managed-Disks.json -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/AzurePolicy/audit/Audit-PublicIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/AzurePolicy/audit/Audit-PublicIP.json -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/AzurePolicy/audit/Audit-Resource-Tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/AzurePolicy/audit/Audit-Resource-Tag.json -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/AzurePolicy/deny/Allowed-Locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/AzurePolicy/deny/Allowed-Locations.json -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/AzurePolicy/deny/Prevent-Unmanaged-Disk-Creation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/AzurePolicy/deny/Prevent-Unmanaged-Disk-Creation.json -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/AzurePolicy/deny/denyPIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/AzurePolicy/deny/denyPIP.json -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/JsonExamples/businessAnalysts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/JsonExamples/businessAnalysts.json -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/JsonExamples/cloudDevelopers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/JsonExamples/cloudDevelopers.json -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/JsonExamples/cloudOpsAdmins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/JsonExamples/cloudOpsAdmins.json -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/JsonExamples/cloudOpsEngLead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/JsonExamples/cloudOpsEngLead.json -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/JsonExamples/digitalSecurity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/JsonExamples/digitalSecurity.json -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/JsonExamples/networkAdmins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/JsonExamples/networkAdmins.json -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/JsonExamples/suppReaderTickets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/JsonExamples/suppReaderTickets.json -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/PowerShell/AzResourceProviderOperations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/PowerShell/AzResourceProviderOperations.ps1 -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/PowerShell/Built-InRoles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/PowerShell/Built-InRoles.ps1 -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/PowerShell/CustomRoleAssignment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/PowerShell/CustomRoleAssignment.ps1 -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/PowerShell/New-AzureRmDef-w-JSON.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/PowerShell/New-AzureRmDef-w-JSON.ps1 -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/PowerShell/RoleTemplate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/PowerShell/RoleTemplate.ps1 -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/PowerShellRoleExamples/RBACBASA.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/PowerShellRoleExamples/RBACBASA.ps1 -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/PowerShellRoleExamples/RBACCloudOpsLead.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/PowerShellRoleExamples/RBACCloudOpsLead.ps1 -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/PowerShellRoleExamples/RBACCloudOpsNonLead.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/PowerShellRoleExamples/RBACCloudOpsNonLead.ps1 -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/PowerShellRoleExamples/RBACDeveloper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/PowerShellRoleExamples/RBACDeveloper.ps1 -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/PowerShellRoleExamples/RBACDigitalSecurity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/PowerShellRoleExamples/RBACDigitalSecurity.ps1 -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/PowerShellRoleExamples/RBACNetworking.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/PowerShellRoleExamples/RBACNetworking.ps1 -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/CustomRBAC/PowerShellRoleExamples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/CustomRBAC/PowerShellRoleExamples/README.md -------------------------------------------------------------------------------- /sample-AzGuardRails-Governance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-AzGuardRails-Governance/README.md -------------------------------------------------------------------------------- /sample-EasyAuth-ClassicASP/EasyAuthClassicASP/default.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-EasyAuth-ClassicASP/EasyAuthClassicASP/default.asp -------------------------------------------------------------------------------- /sample-EasyAuth-ClassicASP/EasyAuthClassicASP/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-EasyAuth-ClassicASP/EasyAuthClassicASP/dockerfile -------------------------------------------------------------------------------- /sample-EasyAuth-ClassicASP/EasyAuthClassicASP/global.asa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-EasyAuth-ClassicASP/EasyAuthClassicASP/global.asa -------------------------------------------------------------------------------- /sample-EasyAuth-ClassicASP/EasyAuthClassicASP/inc/500-100.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-EasyAuth-ClassicASP/EasyAuthClassicASP/inc/500-100.asp -------------------------------------------------------------------------------- /sample-EasyAuth-ClassicASP/EasyAuthClassicASP/inc/EasyAuthASP.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-EasyAuth-ClassicASP/EasyAuthClassicASP/inc/EasyAuthASP.asp -------------------------------------------------------------------------------- /sample-EasyAuth-ClassicASP/EasyAuthClassicASP/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-EasyAuth-ClassicASP/EasyAuthClassicASP/web.config -------------------------------------------------------------------------------- /sample-EasyAuth-ClassicASP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-EasyAuth-ClassicASP/README.md -------------------------------------------------------------------------------- /sample-Python-KeyVault-Function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-Python-KeyVault-Function/README.md -------------------------------------------------------------------------------- /sample-Python-KeyVault-Function/init-manual-service-principal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-Python-KeyVault-Function/init-manual-service-principal.py -------------------------------------------------------------------------------- /sample-Python-KeyVault-Function/init-with-msi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-Python-KeyVault-Function/init-with-msi.py -------------------------------------------------------------------------------- /sample-Python-KeyVault-Function/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-Python-KeyVault-Function/requirements.txt -------------------------------------------------------------------------------- /sample-UpdateManagement/Kusto/Compliance/NotAssessedHosts.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/Kusto/Compliance/NotAssessedHosts.csl -------------------------------------------------------------------------------- /sample-UpdateManagement/Kusto/Compliance/UncompliantHosts.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/Kusto/Compliance/UncompliantHosts.csl -------------------------------------------------------------------------------- /sample-UpdateManagement/Kusto/Post Analysis/Host-w-PatchAmountApplied.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/Kusto/Post Analysis/Host-w-PatchAmountApplied.csl -------------------------------------------------------------------------------- /sample-UpdateManagement/Kusto/Post Analysis/LinWin-PostAnalysis.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/Kusto/Post Analysis/LinWin-PostAnalysis.csl -------------------------------------------------------------------------------- /sample-UpdateManagement/Kusto/Pre-Analysis/Linux-PreAnalysis.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/Kusto/Pre-Analysis/Linux-PreAnalysis.csl -------------------------------------------------------------------------------- /sample-UpdateManagement/Kusto/Pre-Analysis/Windows-PreAnalysis.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/Kusto/Pre-Analysis/Windows-PreAnalysis.csl -------------------------------------------------------------------------------- /sample-UpdateManagement/Kusto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/Kusto/README.md -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/ADDS/01-InitialTask-ADDSSecurityGroups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/ADDS/01-InitialTask-ADDSSecurityGroups.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/ADDS/02-SchedTask-ADDSSecurityGroups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/ADDS/02-SchedTask-ADDSSecurityGroups.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/ADDS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/ADDS/README.md -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/AutomatedComplianceReporting/01-BearerToken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/AutomatedComplianceReporting/01-BearerToken.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/AutomatedComplianceReporting/02-PostAnalysisAutomation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/AutomatedComplianceReporting/02-PostAnalysisAutomation.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/AutomatedComplianceReporting/03-PreAnalysisAutomation-Linux.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/AutomatedComplianceReporting/03-PreAnalysisAutomation-Linux.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/AutomatedComplianceReporting/04-PreAnalysisAutomation-Windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/AutomatedComplianceReporting/04-PreAnalysisAutomation-Windows.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/AutomatedComplianceReporting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/AutomatedComplianceReporting/README.md -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/3rdPartyPatching/7Zip.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/3rdPartyPatching/7Zip.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/3rdPartyPatching/JRE.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/3rdPartyPatching/JRE.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/3rdPartyPatching/VNC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/3rdPartyPatching/VNC.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/3rdPartyPatching/WinZip.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/3rdPartyPatching/WinZip.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/3rdPartyPatching/Wireshark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/3rdPartyPatching/Wireshark.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/Export-RunAsCertificateToHybridWorker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/Export-RunAsCertificateToHybridWorker.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/README.md -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/RollbackPatches/WindowsRollback.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/RollbackPatches/WindowsRollback.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/RollbackPatches/linRollBack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/AzureAutomationRunbooks/RollbackPatches/linRollBack.py -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/GroupSchedule/01-SvrGrping.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/GroupSchedule/01-SvrGrping.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/GroupSchedule/02-WinSvrSched.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/GroupSchedule/02-WinSvrSched.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/GroupSchedule/03-LinuxSvrSched.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/GroupSchedule/03-LinuxSvrSched.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/GroupSchedule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/GroupSchedule/README.md -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/UpdateAgentReadiness/01-BearerToken.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/UpdateAgentReadiness/01-BearerToken.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/UpdateAgentReadiness/02-UpdateAgentReadiness.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/UpdateAgentReadiness/02-UpdateAgentReadiness.ps1 -------------------------------------------------------------------------------- /sample-UpdateManagement/PowerShell/UpdateAgentReadiness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/PowerShell/UpdateAgentReadiness/README.md -------------------------------------------------------------------------------- /sample-UpdateManagement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/README.md -------------------------------------------------------------------------------- /sample-UpdateManagement/WSUS Deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/WSUS Deployment/README.md -------------------------------------------------------------------------------- /sample-UpdateManagement/WSUS Deployment/WSUS30SP2DeployGuide.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/WSUS Deployment/WSUS30SP2DeployGuide.doc -------------------------------------------------------------------------------- /sample-UpdateManagement/WSUS Deployment/WSUS30SP2DeployGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-UpdateManagement/WSUS Deployment/WSUS30SP2DeployGuide.pdf -------------------------------------------------------------------------------- /sample-VMSS-DomainJoin-Arm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-VMSS-DomainJoin-Arm/README.md -------------------------------------------------------------------------------- /sample-VMSS-DomainJoin-Arm/WindowsVirtualMachineScaleSet.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-VMSS-DomainJoin-Arm/WindowsVirtualMachineScaleSet.parameters.json -------------------------------------------------------------------------------- /sample-VMSS-DomainJoin-Arm/WindowsVirtualMachineScaleSet_DomainJoin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-VMSS-DomainJoin-Arm/WindowsVirtualMachineScaleSet_DomainJoin.json -------------------------------------------------------------------------------- /sample-k8sRefArch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/README.md -------------------------------------------------------------------------------- /sample-k8sRefArch/apim-appGw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/apim-appGw/README.md -------------------------------------------------------------------------------- /sample-k8sRefArch/apim-appGw/aksDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/apim-appGw/aksDeploy.json -------------------------------------------------------------------------------- /sample-k8sRefArch/apim-appGw/aksParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/apim-appGw/aksParams.json -------------------------------------------------------------------------------- /sample-k8sRefArch/apim-appGw/appGwApimDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/apim-appGw/appGwApimDeploy.json -------------------------------------------------------------------------------- /sample-k8sRefArch/apim-appGw/appGwApimParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/apim-appGw/appGwApimParams.json -------------------------------------------------------------------------------- /sample-k8sRefArch/apim-appGw/helm-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/apim-appGw/helm-rbac.yaml -------------------------------------------------------------------------------- /sample-k8sRefArch/apim-appGw/ingress-internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/apim-appGw/ingress-internal.yaml -------------------------------------------------------------------------------- /sample-k8sRefArch/apim-appGw/kubectl-helm-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/apim-appGw/kubectl-helm-commands.md -------------------------------------------------------------------------------- /sample-k8sRefArch/appGw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/appGw/README.md -------------------------------------------------------------------------------- /sample-k8sRefArch/appGw/aksDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/appGw/aksDeploy.json -------------------------------------------------------------------------------- /sample-k8sRefArch/appGw/aksParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/appGw/aksParams.json -------------------------------------------------------------------------------- /sample-k8sRefArch/appGw/appGwDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/appGw/appGwDeploy.json -------------------------------------------------------------------------------- /sample-k8sRefArch/appGw/appGwParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/appGw/appGwParams.json -------------------------------------------------------------------------------- /sample-k8sRefArch/appGw/echo-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/appGw/echo-api.yaml -------------------------------------------------------------------------------- /sample-k8sRefArch/appGw/helm-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/appGw/helm-rbac.yaml -------------------------------------------------------------------------------- /sample-k8sRefArch/appGw/ingress-internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/appGw/ingress-internal.yaml -------------------------------------------------------------------------------- /sample-k8sRefArch/appGw/kubectl-helm-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/appGw/kubectl-helm-commands.md -------------------------------------------------------------------------------- /sample-k8sRefArch/k8s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/k8s/README.md -------------------------------------------------------------------------------- /sample-k8sRefArch/k8s/aksDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/k8s/aksDeploy.json -------------------------------------------------------------------------------- /sample-k8sRefArch/k8s/aksParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/k8s/aksParams.json -------------------------------------------------------------------------------- /sample-k8sRefArch/k8s/helm-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/k8s/helm-rbac.yaml -------------------------------------------------------------------------------- /sample-k8sRefArch/k8s/ingress-internal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/k8s/ingress-internal.yaml -------------------------------------------------------------------------------- /sample-k8sRefArch/k8s/kubectl-helm-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/k8s/kubectl-helm-commands.md -------------------------------------------------------------------------------- /sample-k8sRefArch/keyVault/PoSH/createKeyVault.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/keyVault/PoSH/createKeyVault.ps1 -------------------------------------------------------------------------------- /sample-k8sRefArch/keyVault/PoSH/generateSecret.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/keyVault/PoSH/generateSecret.ps1 -------------------------------------------------------------------------------- /sample-k8sRefArch/keyVault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/keyVault/README.md -------------------------------------------------------------------------------- /sample-k8sRefArch/keyVault/armTemplate/createKeyVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/keyVault/armTemplate/createKeyVault.json -------------------------------------------------------------------------------- /sample-k8sRefArch/keyVault/armTemplate/createKeyVaultParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/keyVault/armTemplate/createKeyVaultParams.json -------------------------------------------------------------------------------- /sample-k8sRefArch/setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/setup/README.md -------------------------------------------------------------------------------- /sample-k8sRefArch/setup/envSetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/setup/envSetup.md -------------------------------------------------------------------------------- /sample-k8sRefArch/setup/generateSshKeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/csa-misc-utils/HEAD/sample-k8sRefArch/setup/generateSshKeys.md --------------------------------------------------------------------------------