├── .vscode └── settings.json ├── AllActivityLogs ├── AllActivityLogsPerMonth.pbit └── Readme.md ├── AzureAndOffice365IPAddresses ├── AzureAndOffice365IPList.pbit ├── Get-AzNetworkServiceTag.ps1 └── README.md ├── AzureExtensions ├── FindAndFixExtensionsParallel.ps1 ├── FindBrokenExtension.kql ├── FindBrokenExtensions.ps1 ├── FixBrokenExtensions.ps1 └── Readme.md ├── AzureFunctions ├── ## Azure Function SpotVM Alerts Role.json ├── AllSpotVMsGraphQuery.KQL ├── AzFunction_SpotVM_Evicted_StartUp.ps1 └── Readme.md ├── AzureMigrateFromAFormPowerShell ├── AzureMigrateFromAFormPowerShell.ps1 └── README.md ├── AzureMonitorWorkbook ├── README.md └── StorageAccountAdvanced.json ├── AzurePolicy ├── README.md └── RequireTagOnResourcesBUILTIN.json ├── AzureServerUpdates ├── NewDeployment.ps1 └── README.md ├── AzureSiteRecoveryDRRunbooks ├── DRBackup.ps1 ├── DRCopyAlerts.ps1 ├── DRDiagnostics.ps1 ├── DREnableVMInsights.ps1 ├── DREnableVMInsightsV2.ps1 ├── DRNSGSync.ps1 ├── DRReprotectVMs.ps1 ├── DRServiceHealthAlerts.ps1 ├── DiagnosticsConfiguration.json ├── EXPERIMENTAL_ExportTemplateResources.ps1 ├── HelperScripts │ └── GetIPconfigurationOfProtectedItems.ps1 ├── Readme.md └── createAutomationAccountVariables.ps1 ├── AzureVMExtensions ├── AzureVMBrokenExtensions.ps1 └── README.md ├── BuildAnEntireAzureLab ├── Artifacts_Removed │ ├── aadc-configure.ps1.zip │ ├── ad-configure.ps1.zip │ ├── file-configure.ps1.zip │ ├── hv-configure.ps1.zip │ ├── sccm-configure.ps1.zip │ └── web-configure.ps1.zip ├── README.md ├── deploy-mitbclab.ps1 └── mit-bootcamp.json ├── CallAzureAppServiceTCPdetectors └── CallAzAppServiceTCPdetector.ps1 ├── CheckGitHubCopilotLicense ├── CheckGitHubCopilotLicense.ps1 └── Readme.md ├── ConfigurationManager ├── ConfigMgr-DirectMembership-CollectionCleanup-20190823 └── README.md ├── CreateServiceHealthAlertsForMyResources ├── CreateServiceHealthAlertsForMyResources.ps1 ├── README.md └── ServiceHealthResourceGroupOnly.json ├── DCRVirtualMachinesAssigned ├── GetDCRVirtualMachines.ps1 └── README.md ├── DetectVMAgent ├── AllVMsAllExtensions.ps1 ├── DetectVMAgent.ps1 ├── README.md └── UpdateVMAgent.ps1 ├── ExportAzureEntraUsersUsingGraphAPI └── ExportAzureEntraUsersUsingGraphApi.ps1 ├── FindAllResourceIPs ├── FindAllResourceIPs.ps1 └── README.md ├── FindUnattachedDisks ├── README.md └── UnattachedDisks.ps1 ├── GenerateAPSCodeHealthTest ├── PSCodeHealthGenerate.ps1 └── README.md ├── GetKeyVaultSecrets ├── GetKeyVaultSecretsValues.ps1 └── README.md ├── HybridCloudPrintPublishPrinter ├── PublishPrinter └── README.md ├── LicenseQueries ├── AutomationAccountComponents │ ├── LicenseAssignments_CL.KQL │ └── LicensewithGroupsAssignments.ps1 ├── LicenseNames │ ├── Product names and service plan identifiers for licensing.csv │ └── ProductNamesAndServicePlans.txt ├── LogicAppComponents │ ├── AuditLogsGroupsListResults.KQL │ └── AuditLogsGroupsVisualizeResults.KQL └── Readme.md ├── LinuxUpdateDSC ├── LinuxUpdateDSC.ps1 └── Readme.md ├── LogAnalyticsKusto ├── ActivityLogVMDeallocated.kql ├── AllLAWorkspaces.ps1 ├── LACostPerRG ├── LACostPerRGUpdateManagementTable.kql ├── LADirectAgents.kql └── README.md ├── MEMBaselines ├── 3.jpg ├── CheckCerts.ps1 ├── CheckDefaultIISSite.ps1 ├── DNSRecursion.ps1 ├── ForceIIS7DisplayHost.ps1 ├── IISRequestFiltering.ps1 ├── README.md └── Top 25 Remediations by Risk.cab ├── MemBaseline ├── 3.jpg ├── CheckCerts.ps1 ├── CheckDefaultIISSite.ps1 ├── DNSRecursion.ps1 ├── ForceIIS7DisplayHost.ps1 ├── IISRequestFiltering.ps1 ├── README.md └── Top 25 Remediations by Risk.cab ├── MicrosoftMonitoringAgent ├── ChangeMMAForALLServers │ └── ChangeAzureMonitorLogAgentWorkspaceInformationForAllVMs.ps1 ├── ConnectExtensionListOfMachines.ps1 ├── DCRGenerator │ ├── MonitoringDesignSuggestionsCAFWAF.pdf │ ├── MonitoringDesignSuggestionsWAF.pdf │ ├── MonitoringDesignSuggestionsWAFSteps.pdf │ └── WorkspaceConfigToDCRMigrationTool.ps1 ├── DesiredStateConfiguration │ └── DSCMMAgent.ps1 ├── OMSAgentInOSChange │ ├── ConnectOMSWorkspaceOS.ps1 │ ├── ConnectOMSWorkspaceOS.sh │ └── StartScript.ps1 ├── README.md ├── ReOrderAllWorkspaces │ └── LogAnalyticsReOrderWorkspacesRCS.ps1 └── SetMMAProxy │ └── SetProxyLA.ps1 ├── NoManagersEntraIDGraph └── UsersNoManagersGraph.ps1 ├── OpenAIBYODPermissions └── OpenAIStudioPermissionsRequired.sh ├── PowerBIFunctions ├── FetchConsumptionData.txt ├── FetchDataForPeriod.txt ├── FetchPriceSheet.txt ├── FetchReservationsForBillingAccount.txt ├── FetchUsageForPeriod.txt ├── GenerateBillingPeriods.txt └── Marketplace.txt ├── PrivateEndpointDNSCreateandConfig ├── PrivateEndpointDNSCreateandConfig.ps1 ├── PrivateLinkStorageAccount.ps1 └── README.md ├── QueryTLSinAzure ├── FindAzureADTLSApps.ps1 ├── README.md └── TestEndpointForTLS ├── RBACRoles ├── ## Azure Function ActionGroup Alerts.json ├── ## Update Center Admin.json ├── ## Update Management Admin (Custom Modified).json ├── ## Update Management Admin (Custom Original).json ├── ## Update Management Reader (Custom).json ├── README.md └── SQLResourceContributor ├── Readme.md ├── RecreateVMinAnotherVNET ├── After │ ├── PowerShell.ps1 │ ├── azure-pipelinesAfter.yml │ └── mainAfter.tf ├── README.md ├── azure-pipelines.yml └── main.tf ├── RemoveAllEmptyResourceGroups ├── README.md └── RemoveEmptyRGs.ps1 ├── ResourceGraphExplorer ├── AKSGetDockerBridgeCIDR.kql ├── AllAzResourcesIPs.kql ├── AllAzureChangesMadeByWho.kql ├── AllExtensionsOnVMs.kql ├── FindAllSpotVMs.kql ├── FindAllSubscriptionNames.kql ├── FindAllUnattachedDisks.kql ├── FindOSProperties.kql ├── GetVirtualNetworksandSubscriptionName ├── PublicIPs.kql ├── QueryLAWorkspaceForUpdateSolution ├── QueryPrivateLink └── README.md ├── SQLManagedInstanceRightSizing ├── Readme.md ├── RunAssessment.ps1 ├── config.json └── skurecconfig.json ├── ScanAzureIPs ├── README.md └── ScanAzureIPs.ps1 ├── SharePointFromLinux └── AuthorizationToken.sh ├── ShrinkAzDisk ├── README.md └── ShrinkAzDisk.ps1 ├── StartStopVMs └── StartStopVMsBasedOnTag.ps1 ├── UpdateManagementCenterPolicy ├── Readme.md └── UpdateManagementCenterPolicy.json ├── UpdateManagementQueryLogs ├── QueryLogs.kql ├── Readme.md └── UpdateManagementWorkbook.json ├── UpdateManager └── UpdateManagerQueryUnsupportedOS.kql ├── UpdateManagerStartSnapshotPatch ├── Create_VM_OS_Snapshot_Before_Patching.ps1 ├── Readme.md └── Start_VM_Snapshot_Tagged_VMs.ps1 ├── UploadCustomLogToLA ├── Code-Create-Upload-OMS-CUstom-Query-Multiple-Computers.ps1 └── Code-Create-Upload-OMS-Custom-Log.ps1 ├── WindowsUpdateDSC ├── Readme.md ├── WindowsUpdate.ps1 └── WindowsUpdate │ └── localhost.mof └── zOtherTools └── CMTrace.exe /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "azureAutomation.directory.basePath": "c:\\Users\\weral" 3 | } -------------------------------------------------------------------------------- /AllActivityLogs/AllActivityLogsPerMonth.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AllActivityLogs/AllActivityLogsPerMonth.pbit -------------------------------------------------------------------------------- /AllActivityLogs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AllActivityLogs/Readme.md -------------------------------------------------------------------------------- /AzureAndOffice365IPAddresses/AzureAndOffice365IPList.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureAndOffice365IPAddresses/AzureAndOffice365IPList.pbit -------------------------------------------------------------------------------- /AzureAndOffice365IPAddresses/Get-AzNetworkServiceTag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureAndOffice365IPAddresses/Get-AzNetworkServiceTag.ps1 -------------------------------------------------------------------------------- /AzureAndOffice365IPAddresses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureAndOffice365IPAddresses/README.md -------------------------------------------------------------------------------- /AzureExtensions/FindAndFixExtensionsParallel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureExtensions/FindAndFixExtensionsParallel.ps1 -------------------------------------------------------------------------------- /AzureExtensions/FindBrokenExtension.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureExtensions/FindBrokenExtension.kql -------------------------------------------------------------------------------- /AzureExtensions/FindBrokenExtensions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureExtensions/FindBrokenExtensions.ps1 -------------------------------------------------------------------------------- /AzureExtensions/FixBrokenExtensions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureExtensions/FixBrokenExtensions.ps1 -------------------------------------------------------------------------------- /AzureExtensions/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureExtensions/Readme.md -------------------------------------------------------------------------------- /AzureFunctions/## Azure Function SpotVM Alerts Role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureFunctions/## Azure Function SpotVM Alerts Role.json -------------------------------------------------------------------------------- /AzureFunctions/AllSpotVMsGraphQuery.KQL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureFunctions/AllSpotVMsGraphQuery.KQL -------------------------------------------------------------------------------- /AzureFunctions/AzFunction_SpotVM_Evicted_StartUp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureFunctions/AzFunction_SpotVM_Evicted_StartUp.ps1 -------------------------------------------------------------------------------- /AzureFunctions/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureFunctions/Readme.md -------------------------------------------------------------------------------- /AzureMigrateFromAFormPowerShell/AzureMigrateFromAFormPowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureMigrateFromAFormPowerShell/AzureMigrateFromAFormPowerShell.ps1 -------------------------------------------------------------------------------- /AzureMigrateFromAFormPowerShell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureMigrateFromAFormPowerShell/README.md -------------------------------------------------------------------------------- /AzureMonitorWorkbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureMonitorWorkbook/README.md -------------------------------------------------------------------------------- /AzureMonitorWorkbook/StorageAccountAdvanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureMonitorWorkbook/StorageAccountAdvanced.json -------------------------------------------------------------------------------- /AzurePolicy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzurePolicy/README.md -------------------------------------------------------------------------------- /AzurePolicy/RequireTagOnResourcesBUILTIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzurePolicy/RequireTagOnResourcesBUILTIN.json -------------------------------------------------------------------------------- /AzureServerUpdates/NewDeployment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureServerUpdates/NewDeployment.ps1 -------------------------------------------------------------------------------- /AzureServerUpdates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureServerUpdates/README.md -------------------------------------------------------------------------------- /AzureSiteRecoveryDRRunbooks/DRBackup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureSiteRecoveryDRRunbooks/DRBackup.ps1 -------------------------------------------------------------------------------- /AzureSiteRecoveryDRRunbooks/DRCopyAlerts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureSiteRecoveryDRRunbooks/DRCopyAlerts.ps1 -------------------------------------------------------------------------------- /AzureSiteRecoveryDRRunbooks/DRDiagnostics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureSiteRecoveryDRRunbooks/DRDiagnostics.ps1 -------------------------------------------------------------------------------- /AzureSiteRecoveryDRRunbooks/DREnableVMInsights.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureSiteRecoveryDRRunbooks/DREnableVMInsights.ps1 -------------------------------------------------------------------------------- /AzureSiteRecoveryDRRunbooks/DREnableVMInsightsV2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureSiteRecoveryDRRunbooks/DREnableVMInsightsV2.ps1 -------------------------------------------------------------------------------- /AzureSiteRecoveryDRRunbooks/DRNSGSync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureSiteRecoveryDRRunbooks/DRNSGSync.ps1 -------------------------------------------------------------------------------- /AzureSiteRecoveryDRRunbooks/DRReprotectVMs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureSiteRecoveryDRRunbooks/DRReprotectVMs.ps1 -------------------------------------------------------------------------------- /AzureSiteRecoveryDRRunbooks/DRServiceHealthAlerts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureSiteRecoveryDRRunbooks/DRServiceHealthAlerts.ps1 -------------------------------------------------------------------------------- /AzureSiteRecoveryDRRunbooks/DiagnosticsConfiguration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureSiteRecoveryDRRunbooks/DiagnosticsConfiguration.json -------------------------------------------------------------------------------- /AzureSiteRecoveryDRRunbooks/EXPERIMENTAL_ExportTemplateResources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureSiteRecoveryDRRunbooks/EXPERIMENTAL_ExportTemplateResources.ps1 -------------------------------------------------------------------------------- /AzureSiteRecoveryDRRunbooks/HelperScripts/GetIPconfigurationOfProtectedItems.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureSiteRecoveryDRRunbooks/HelperScripts/GetIPconfigurationOfProtectedItems.ps1 -------------------------------------------------------------------------------- /AzureSiteRecoveryDRRunbooks/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureSiteRecoveryDRRunbooks/Readme.md -------------------------------------------------------------------------------- /AzureSiteRecoveryDRRunbooks/createAutomationAccountVariables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureSiteRecoveryDRRunbooks/createAutomationAccountVariables.ps1 -------------------------------------------------------------------------------- /AzureVMExtensions/AzureVMBrokenExtensions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureVMExtensions/AzureVMBrokenExtensions.ps1 -------------------------------------------------------------------------------- /AzureVMExtensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/AzureVMExtensions/README.md -------------------------------------------------------------------------------- /BuildAnEntireAzureLab/Artifacts_Removed/aadc-configure.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/BuildAnEntireAzureLab/Artifacts_Removed/aadc-configure.ps1.zip -------------------------------------------------------------------------------- /BuildAnEntireAzureLab/Artifacts_Removed/ad-configure.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/BuildAnEntireAzureLab/Artifacts_Removed/ad-configure.ps1.zip -------------------------------------------------------------------------------- /BuildAnEntireAzureLab/Artifacts_Removed/file-configure.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/BuildAnEntireAzureLab/Artifacts_Removed/file-configure.ps1.zip -------------------------------------------------------------------------------- /BuildAnEntireAzureLab/Artifacts_Removed/hv-configure.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/BuildAnEntireAzureLab/Artifacts_Removed/hv-configure.ps1.zip -------------------------------------------------------------------------------- /BuildAnEntireAzureLab/Artifacts_Removed/sccm-configure.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/BuildAnEntireAzureLab/Artifacts_Removed/sccm-configure.ps1.zip -------------------------------------------------------------------------------- /BuildAnEntireAzureLab/Artifacts_Removed/web-configure.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/BuildAnEntireAzureLab/Artifacts_Removed/web-configure.ps1.zip -------------------------------------------------------------------------------- /BuildAnEntireAzureLab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/BuildAnEntireAzureLab/README.md -------------------------------------------------------------------------------- /BuildAnEntireAzureLab/deploy-mitbclab.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/BuildAnEntireAzureLab/deploy-mitbclab.ps1 -------------------------------------------------------------------------------- /BuildAnEntireAzureLab/mit-bootcamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/BuildAnEntireAzureLab/mit-bootcamp.json -------------------------------------------------------------------------------- /CallAzureAppServiceTCPdetectors/CallAzAppServiceTCPdetector.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/CallAzureAppServiceTCPdetectors/CallAzAppServiceTCPdetector.ps1 -------------------------------------------------------------------------------- /CheckGitHubCopilotLicense/CheckGitHubCopilotLicense.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/CheckGitHubCopilotLicense/CheckGitHubCopilotLicense.ps1 -------------------------------------------------------------------------------- /CheckGitHubCopilotLicense/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/CheckGitHubCopilotLicense/Readme.md -------------------------------------------------------------------------------- /ConfigurationManager/ConfigMgr-DirectMembership-CollectionCleanup-20190823: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ConfigurationManager/ConfigMgr-DirectMembership-CollectionCleanup-20190823 -------------------------------------------------------------------------------- /ConfigurationManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ConfigurationManager/README.md -------------------------------------------------------------------------------- /CreateServiceHealthAlertsForMyResources/CreateServiceHealthAlertsForMyResources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/CreateServiceHealthAlertsForMyResources/CreateServiceHealthAlertsForMyResources.ps1 -------------------------------------------------------------------------------- /CreateServiceHealthAlertsForMyResources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/CreateServiceHealthAlertsForMyResources/README.md -------------------------------------------------------------------------------- /CreateServiceHealthAlertsForMyResources/ServiceHealthResourceGroupOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/CreateServiceHealthAlertsForMyResources/ServiceHealthResourceGroupOnly.json -------------------------------------------------------------------------------- /DCRVirtualMachinesAssigned/GetDCRVirtualMachines.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/DCRVirtualMachinesAssigned/GetDCRVirtualMachines.ps1 -------------------------------------------------------------------------------- /DCRVirtualMachinesAssigned/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/DCRVirtualMachinesAssigned/README.md -------------------------------------------------------------------------------- /DetectVMAgent/AllVMsAllExtensions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/DetectVMAgent/AllVMsAllExtensions.ps1 -------------------------------------------------------------------------------- /DetectVMAgent/DetectVMAgent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/DetectVMAgent/DetectVMAgent.ps1 -------------------------------------------------------------------------------- /DetectVMAgent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/DetectVMAgent/README.md -------------------------------------------------------------------------------- /DetectVMAgent/UpdateVMAgent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/DetectVMAgent/UpdateVMAgent.ps1 -------------------------------------------------------------------------------- /ExportAzureEntraUsersUsingGraphAPI/ExportAzureEntraUsersUsingGraphApi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ExportAzureEntraUsersUsingGraphAPI/ExportAzureEntraUsersUsingGraphApi.ps1 -------------------------------------------------------------------------------- /FindAllResourceIPs/FindAllResourceIPs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/FindAllResourceIPs/FindAllResourceIPs.ps1 -------------------------------------------------------------------------------- /FindAllResourceIPs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/FindAllResourceIPs/README.md -------------------------------------------------------------------------------- /FindUnattachedDisks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/FindUnattachedDisks/README.md -------------------------------------------------------------------------------- /FindUnattachedDisks/UnattachedDisks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/FindUnattachedDisks/UnattachedDisks.ps1 -------------------------------------------------------------------------------- /GenerateAPSCodeHealthTest/PSCodeHealthGenerate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/GenerateAPSCodeHealthTest/PSCodeHealthGenerate.ps1 -------------------------------------------------------------------------------- /GenerateAPSCodeHealthTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/GenerateAPSCodeHealthTest/README.md -------------------------------------------------------------------------------- /GetKeyVaultSecrets/GetKeyVaultSecretsValues.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/GetKeyVaultSecrets/GetKeyVaultSecretsValues.ps1 -------------------------------------------------------------------------------- /GetKeyVaultSecrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/GetKeyVaultSecrets/README.md -------------------------------------------------------------------------------- /HybridCloudPrintPublishPrinter/PublishPrinter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/HybridCloudPrintPublishPrinter/PublishPrinter -------------------------------------------------------------------------------- /HybridCloudPrintPublishPrinter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/HybridCloudPrintPublishPrinter/README.md -------------------------------------------------------------------------------- /LicenseQueries/AutomationAccountComponents/LicenseAssignments_CL.KQL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/LicenseQueries/AutomationAccountComponents/LicenseAssignments_CL.KQL -------------------------------------------------------------------------------- /LicenseQueries/AutomationAccountComponents/LicensewithGroupsAssignments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/LicenseQueries/AutomationAccountComponents/LicensewithGroupsAssignments.ps1 -------------------------------------------------------------------------------- /LicenseQueries/LicenseNames/Product names and service plan identifiers for licensing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/LicenseQueries/LicenseNames/Product names and service plan identifiers for licensing.csv -------------------------------------------------------------------------------- /LicenseQueries/LicenseNames/ProductNamesAndServicePlans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/LicenseQueries/LicenseNames/ProductNamesAndServicePlans.txt -------------------------------------------------------------------------------- /LicenseQueries/LogicAppComponents/AuditLogsGroupsListResults.KQL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/LicenseQueries/LogicAppComponents/AuditLogsGroupsListResults.KQL -------------------------------------------------------------------------------- /LicenseQueries/LogicAppComponents/AuditLogsGroupsVisualizeResults.KQL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/LicenseQueries/LogicAppComponents/AuditLogsGroupsVisualizeResults.KQL -------------------------------------------------------------------------------- /LicenseQueries/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/LicenseQueries/Readme.md -------------------------------------------------------------------------------- /LinuxUpdateDSC/LinuxUpdateDSC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/LinuxUpdateDSC/LinuxUpdateDSC.ps1 -------------------------------------------------------------------------------- /LinuxUpdateDSC/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/LinuxUpdateDSC/Readme.md -------------------------------------------------------------------------------- /LogAnalyticsKusto/ActivityLogVMDeallocated.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/LogAnalyticsKusto/ActivityLogVMDeallocated.kql -------------------------------------------------------------------------------- /LogAnalyticsKusto/AllLAWorkspaces.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/LogAnalyticsKusto/AllLAWorkspaces.ps1 -------------------------------------------------------------------------------- /LogAnalyticsKusto/LACostPerRG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/LogAnalyticsKusto/LACostPerRG -------------------------------------------------------------------------------- /LogAnalyticsKusto/LACostPerRGUpdateManagementTable.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/LogAnalyticsKusto/LACostPerRGUpdateManagementTable.kql -------------------------------------------------------------------------------- /LogAnalyticsKusto/LADirectAgents.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/LogAnalyticsKusto/LADirectAgents.kql -------------------------------------------------------------------------------- /LogAnalyticsKusto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/LogAnalyticsKusto/README.md -------------------------------------------------------------------------------- /MEMBaselines/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MEMBaselines/3.jpg -------------------------------------------------------------------------------- /MEMBaselines/CheckCerts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MEMBaselines/CheckCerts.ps1 -------------------------------------------------------------------------------- /MEMBaselines/CheckDefaultIISSite.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MEMBaselines/CheckDefaultIISSite.ps1 -------------------------------------------------------------------------------- /MEMBaselines/DNSRecursion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MEMBaselines/DNSRecursion.ps1 -------------------------------------------------------------------------------- /MEMBaselines/ForceIIS7DisplayHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MEMBaselines/ForceIIS7DisplayHost.ps1 -------------------------------------------------------------------------------- /MEMBaselines/IISRequestFiltering.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MEMBaselines/IISRequestFiltering.ps1 -------------------------------------------------------------------------------- /MEMBaselines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MEMBaselines/README.md -------------------------------------------------------------------------------- /MEMBaselines/Top 25 Remediations by Risk.cab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MEMBaselines/Top 25 Remediations by Risk.cab -------------------------------------------------------------------------------- /MemBaseline/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MemBaseline/3.jpg -------------------------------------------------------------------------------- /MemBaseline/CheckCerts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MemBaseline/CheckCerts.ps1 -------------------------------------------------------------------------------- /MemBaseline/CheckDefaultIISSite.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MemBaseline/CheckDefaultIISSite.ps1 -------------------------------------------------------------------------------- /MemBaseline/DNSRecursion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MemBaseline/DNSRecursion.ps1 -------------------------------------------------------------------------------- /MemBaseline/ForceIIS7DisplayHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MemBaseline/ForceIIS7DisplayHost.ps1 -------------------------------------------------------------------------------- /MemBaseline/IISRequestFiltering.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MemBaseline/IISRequestFiltering.ps1 -------------------------------------------------------------------------------- /MemBaseline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MemBaseline/README.md -------------------------------------------------------------------------------- /MemBaseline/Top 25 Remediations by Risk.cab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MemBaseline/Top 25 Remediations by Risk.cab -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent/ChangeMMAForALLServers/ChangeAzureMonitorLogAgentWorkspaceInformationForAllVMs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MicrosoftMonitoringAgent/ChangeMMAForALLServers/ChangeAzureMonitorLogAgentWorkspaceInformationForAllVMs.ps1 -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent/ConnectExtensionListOfMachines.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MicrosoftMonitoringAgent/ConnectExtensionListOfMachines.ps1 -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent/DCRGenerator/MonitoringDesignSuggestionsCAFWAF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MicrosoftMonitoringAgent/DCRGenerator/MonitoringDesignSuggestionsCAFWAF.pdf -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent/DCRGenerator/MonitoringDesignSuggestionsWAF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MicrosoftMonitoringAgent/DCRGenerator/MonitoringDesignSuggestionsWAF.pdf -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent/DCRGenerator/MonitoringDesignSuggestionsWAFSteps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MicrosoftMonitoringAgent/DCRGenerator/MonitoringDesignSuggestionsWAFSteps.pdf -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent/DCRGenerator/WorkspaceConfigToDCRMigrationTool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MicrosoftMonitoringAgent/DCRGenerator/WorkspaceConfigToDCRMigrationTool.ps1 -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent/DesiredStateConfiguration/DSCMMAgent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MicrosoftMonitoringAgent/DesiredStateConfiguration/DSCMMAgent.ps1 -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent/OMSAgentInOSChange/ConnectOMSWorkspaceOS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MicrosoftMonitoringAgent/OMSAgentInOSChange/ConnectOMSWorkspaceOS.ps1 -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent/OMSAgentInOSChange/ConnectOMSWorkspaceOS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MicrosoftMonitoringAgent/OMSAgentInOSChange/ConnectOMSWorkspaceOS.sh -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent/OMSAgentInOSChange/StartScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MicrosoftMonitoringAgent/OMSAgentInOSChange/StartScript.ps1 -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MicrosoftMonitoringAgent/README.md -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent/ReOrderAllWorkspaces/LogAnalyticsReOrderWorkspacesRCS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MicrosoftMonitoringAgent/ReOrderAllWorkspaces/LogAnalyticsReOrderWorkspacesRCS.ps1 -------------------------------------------------------------------------------- /MicrosoftMonitoringAgent/SetMMAProxy/SetProxyLA.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/MicrosoftMonitoringAgent/SetMMAProxy/SetProxyLA.ps1 -------------------------------------------------------------------------------- /NoManagersEntraIDGraph/UsersNoManagersGraph.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/NoManagersEntraIDGraph/UsersNoManagersGraph.ps1 -------------------------------------------------------------------------------- /OpenAIBYODPermissions/OpenAIStudioPermissionsRequired.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/OpenAIBYODPermissions/OpenAIStudioPermissionsRequired.sh -------------------------------------------------------------------------------- /PowerBIFunctions/FetchConsumptionData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/PowerBIFunctions/FetchConsumptionData.txt -------------------------------------------------------------------------------- /PowerBIFunctions/FetchDataForPeriod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/PowerBIFunctions/FetchDataForPeriod.txt -------------------------------------------------------------------------------- /PowerBIFunctions/FetchPriceSheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/PowerBIFunctions/FetchPriceSheet.txt -------------------------------------------------------------------------------- /PowerBIFunctions/FetchReservationsForBillingAccount.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/PowerBIFunctions/FetchReservationsForBillingAccount.txt -------------------------------------------------------------------------------- /PowerBIFunctions/FetchUsageForPeriod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/PowerBIFunctions/FetchUsageForPeriod.txt -------------------------------------------------------------------------------- /PowerBIFunctions/GenerateBillingPeriods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/PowerBIFunctions/GenerateBillingPeriods.txt -------------------------------------------------------------------------------- /PowerBIFunctions/Marketplace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/PowerBIFunctions/Marketplace.txt -------------------------------------------------------------------------------- /PrivateEndpointDNSCreateandConfig/PrivateEndpointDNSCreateandConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/PrivateEndpointDNSCreateandConfig/PrivateEndpointDNSCreateandConfig.ps1 -------------------------------------------------------------------------------- /PrivateEndpointDNSCreateandConfig/PrivateLinkStorageAccount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/PrivateEndpointDNSCreateandConfig/PrivateLinkStorageAccount.ps1 -------------------------------------------------------------------------------- /PrivateEndpointDNSCreateandConfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/PrivateEndpointDNSCreateandConfig/README.md -------------------------------------------------------------------------------- /QueryTLSinAzure/FindAzureADTLSApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/QueryTLSinAzure/FindAzureADTLSApps.ps1 -------------------------------------------------------------------------------- /QueryTLSinAzure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/QueryTLSinAzure/README.md -------------------------------------------------------------------------------- /QueryTLSinAzure/TestEndpointForTLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/QueryTLSinAzure/TestEndpointForTLS -------------------------------------------------------------------------------- /RBACRoles/## Azure Function ActionGroup Alerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/RBACRoles/## Azure Function ActionGroup Alerts.json -------------------------------------------------------------------------------- /RBACRoles/## Update Center Admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/RBACRoles/## Update Center Admin.json -------------------------------------------------------------------------------- /RBACRoles/## Update Management Admin (Custom Modified).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/RBACRoles/## Update Management Admin (Custom Modified).json -------------------------------------------------------------------------------- /RBACRoles/## Update Management Admin (Custom Original).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/RBACRoles/## Update Management Admin (Custom Original).json -------------------------------------------------------------------------------- /RBACRoles/## Update Management Reader (Custom).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/RBACRoles/## Update Management Reader (Custom).json -------------------------------------------------------------------------------- /RBACRoles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/RBACRoles/README.md -------------------------------------------------------------------------------- /RBACRoles/SQLResourceContributor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/RBACRoles/SQLResourceContributor -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/Readme.md -------------------------------------------------------------------------------- /RecreateVMinAnotherVNET/After/PowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/RecreateVMinAnotherVNET/After/PowerShell.ps1 -------------------------------------------------------------------------------- /RecreateVMinAnotherVNET/After/azure-pipelinesAfter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/RecreateVMinAnotherVNET/After/azure-pipelinesAfter.yml -------------------------------------------------------------------------------- /RecreateVMinAnotherVNET/After/mainAfter.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/RecreateVMinAnotherVNET/After/mainAfter.tf -------------------------------------------------------------------------------- /RecreateVMinAnotherVNET/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/RecreateVMinAnotherVNET/README.md -------------------------------------------------------------------------------- /RecreateVMinAnotherVNET/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/RecreateVMinAnotherVNET/azure-pipelines.yml -------------------------------------------------------------------------------- /RecreateVMinAnotherVNET/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/RecreateVMinAnotherVNET/main.tf -------------------------------------------------------------------------------- /RemoveAllEmptyResourceGroups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/RemoveAllEmptyResourceGroups/README.md -------------------------------------------------------------------------------- /RemoveAllEmptyResourceGroups/RemoveEmptyRGs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/RemoveAllEmptyResourceGroups/RemoveEmptyRGs.ps1 -------------------------------------------------------------------------------- /ResourceGraphExplorer/AKSGetDockerBridgeCIDR.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ResourceGraphExplorer/AKSGetDockerBridgeCIDR.kql -------------------------------------------------------------------------------- /ResourceGraphExplorer/AllAzResourcesIPs.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ResourceGraphExplorer/AllAzResourcesIPs.kql -------------------------------------------------------------------------------- /ResourceGraphExplorer/AllAzureChangesMadeByWho.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ResourceGraphExplorer/AllAzureChangesMadeByWho.kql -------------------------------------------------------------------------------- /ResourceGraphExplorer/AllExtensionsOnVMs.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ResourceGraphExplorer/AllExtensionsOnVMs.kql -------------------------------------------------------------------------------- /ResourceGraphExplorer/FindAllSpotVMs.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ResourceGraphExplorer/FindAllSpotVMs.kql -------------------------------------------------------------------------------- /ResourceGraphExplorer/FindAllSubscriptionNames.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ResourceGraphExplorer/FindAllSubscriptionNames.kql -------------------------------------------------------------------------------- /ResourceGraphExplorer/FindAllUnattachedDisks.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ResourceGraphExplorer/FindAllUnattachedDisks.kql -------------------------------------------------------------------------------- /ResourceGraphExplorer/FindOSProperties.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ResourceGraphExplorer/FindOSProperties.kql -------------------------------------------------------------------------------- /ResourceGraphExplorer/GetVirtualNetworksandSubscriptionName: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ResourceGraphExplorer/GetVirtualNetworksandSubscriptionName -------------------------------------------------------------------------------- /ResourceGraphExplorer/PublicIPs.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ResourceGraphExplorer/PublicIPs.kql -------------------------------------------------------------------------------- /ResourceGraphExplorer/QueryLAWorkspaceForUpdateSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ResourceGraphExplorer/QueryLAWorkspaceForUpdateSolution -------------------------------------------------------------------------------- /ResourceGraphExplorer/QueryPrivateLink: -------------------------------------------------------------------------------- 1 | resources 2 | | where type contains "private" -------------------------------------------------------------------------------- /ResourceGraphExplorer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ResourceGraphExplorer/README.md -------------------------------------------------------------------------------- /SQLManagedInstanceRightSizing/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/SQLManagedInstanceRightSizing/Readme.md -------------------------------------------------------------------------------- /SQLManagedInstanceRightSizing/RunAssessment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/SQLManagedInstanceRightSizing/RunAssessment.ps1 -------------------------------------------------------------------------------- /SQLManagedInstanceRightSizing/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/SQLManagedInstanceRightSizing/config.json -------------------------------------------------------------------------------- /SQLManagedInstanceRightSizing/skurecconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/SQLManagedInstanceRightSizing/skurecconfig.json -------------------------------------------------------------------------------- /ScanAzureIPs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ScanAzureIPs/README.md -------------------------------------------------------------------------------- /ScanAzureIPs/ScanAzureIPs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ScanAzureIPs/ScanAzureIPs.ps1 -------------------------------------------------------------------------------- /SharePointFromLinux/AuthorizationToken.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/SharePointFromLinux/AuthorizationToken.sh -------------------------------------------------------------------------------- /ShrinkAzDisk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ShrinkAzDisk/README.md -------------------------------------------------------------------------------- /ShrinkAzDisk/ShrinkAzDisk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/ShrinkAzDisk/ShrinkAzDisk.ps1 -------------------------------------------------------------------------------- /StartStopVMs/StartStopVMsBasedOnTag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/StartStopVMs/StartStopVMsBasedOnTag.ps1 -------------------------------------------------------------------------------- /UpdateManagementCenterPolicy/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/UpdateManagementCenterPolicy/Readme.md -------------------------------------------------------------------------------- /UpdateManagementCenterPolicy/UpdateManagementCenterPolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/UpdateManagementCenterPolicy/UpdateManagementCenterPolicy.json -------------------------------------------------------------------------------- /UpdateManagementQueryLogs/QueryLogs.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/UpdateManagementQueryLogs/QueryLogs.kql -------------------------------------------------------------------------------- /UpdateManagementQueryLogs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/UpdateManagementQueryLogs/Readme.md -------------------------------------------------------------------------------- /UpdateManagementQueryLogs/UpdateManagementWorkbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/UpdateManagementQueryLogs/UpdateManagementWorkbook.json -------------------------------------------------------------------------------- /UpdateManager/UpdateManagerQueryUnsupportedOS.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/UpdateManager/UpdateManagerQueryUnsupportedOS.kql -------------------------------------------------------------------------------- /UpdateManagerStartSnapshotPatch/Create_VM_OS_Snapshot_Before_Patching.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/UpdateManagerStartSnapshotPatch/Create_VM_OS_Snapshot_Before_Patching.ps1 -------------------------------------------------------------------------------- /UpdateManagerStartSnapshotPatch/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/UpdateManagerStartSnapshotPatch/Readme.md -------------------------------------------------------------------------------- /UpdateManagerStartSnapshotPatch/Start_VM_Snapshot_Tagged_VMs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/UpdateManagerStartSnapshotPatch/Start_VM_Snapshot_Tagged_VMs.ps1 -------------------------------------------------------------------------------- /UploadCustomLogToLA/Code-Create-Upload-OMS-CUstom-Query-Multiple-Computers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/UploadCustomLogToLA/Code-Create-Upload-OMS-CUstom-Query-Multiple-Computers.ps1 -------------------------------------------------------------------------------- /UploadCustomLogToLA/Code-Create-Upload-OMS-Custom-Log.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/UploadCustomLogToLA/Code-Create-Upload-OMS-Custom-Log.ps1 -------------------------------------------------------------------------------- /WindowsUpdateDSC/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/WindowsUpdateDSC/Readme.md -------------------------------------------------------------------------------- /WindowsUpdateDSC/WindowsUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/WindowsUpdateDSC/WindowsUpdate.ps1 -------------------------------------------------------------------------------- /WindowsUpdateDSC/WindowsUpdate/localhost.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/WindowsUpdateDSC/WindowsUpdate/localhost.mof -------------------------------------------------------------------------------- /zOtherTools/CMTrace.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WernerRall147/RallTheory/HEAD/zOtherTools/CMTrace.exe --------------------------------------------------------------------------------