├── .github └── workflows │ ├── Build FunctionAppRelease.yml │ ├── Build deployAVDSessionHostReplacer bicep file into ARM.yml │ └── CreateRelease.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── Build ├── Bicep │ ├── FunctionApps.bicep │ └── Modules │ │ └── RBACRoleAssignment.bicep ├── Build-Release-Body.ps1 ├── Build-Zip-File.ps1 ├── Build.ps1 ├── BuildParams.ps1 └── Update-Repo.ps1 ├── CODE_OF_CONDUCT.md ├── FunctionApp ├── .funcignore ├── .gitignore ├── FunctionParameters.psd1 ├── Modules │ └── SessionHostReplacer │ │ ├── SessionHostReplacer.psd1 │ │ ├── SessionHostReplacer.psm1 │ │ ├── changelog.md │ │ ├── en-us │ │ ├── about_SessionHostReplacer.help.txt │ │ └── strings.psd1 │ │ ├── functions │ │ ├── Deploy-SHRSessionHost.ps1 │ │ ├── Get-SHRHostPoolDecision.ps1 │ │ ├── Get-SHRLatestImageVersion.ps1 │ │ ├── Get-SHRRunningDeployment.ps1 │ │ ├── Get-SHRSessionHost.ps1 │ │ ├── Get-SHRSessionHostParameters.ps1 │ │ ├── Get-SHRTemplateSpecVersionResourceId.ps1 │ │ ├── Remove-SHRSessionHost.ps1 │ │ ├── Remove-SHRSessionHostEntraDevice.ps1 │ │ ├── Remove-SHRSessionHostIntuneDevice.ps1 │ │ └── readme.md │ │ ├── internal │ │ ├── configurations │ │ │ ├── configuration.ps1 │ │ │ └── readme.md │ │ ├── functions │ │ │ ├── ConvertTo-CaseInsensitiveHashtable.ps1 │ │ │ ├── Get-RandomPassword.ps1 │ │ │ ├── Send-SHRDrainNotification.ps1 │ │ │ └── readme.md │ │ ├── scriptblocks │ │ │ └── scriptblocks.ps1 │ │ ├── scripts │ │ │ ├── license.ps1 │ │ │ ├── postimport.ps1 │ │ │ ├── preimport.ps1 │ │ │ └── strings.ps1 │ │ └── tepp │ │ │ ├── assignment.ps1 │ │ │ ├── example.tepp.ps1 │ │ │ └── readme.md │ │ ├── readme.md │ │ ├── tests │ │ ├── functions │ │ │ └── readme.md │ │ ├── general │ │ │ ├── FileIntegrity.Exceptions.ps1 │ │ │ ├── FileIntegrity.Tests.ps1 │ │ │ ├── Help.Exceptions.ps1 │ │ │ ├── Help.Tests.ps1 │ │ │ ├── Manifest.Tests.ps1 │ │ │ ├── PSScriptAnalyzer.Tests.ps1 │ │ │ ├── strings.Exceptions.ps1 │ │ │ └── strings.Tests.ps1 │ │ ├── pester.ps1 │ │ └── readme.md │ │ └── xml │ │ ├── SessionHostReplacer.Format.ps1xml │ │ ├── SessionHostReplacer.Types.ps1xml │ │ └── readme.md ├── TimerTrigger1 │ ├── function.json │ ├── readme.md │ ├── run.ps1 │ └── sample.dat ├── host.json ├── profile.ps1 └── requirements.psd1 ├── HelperScripts ├── BuildParametersForBicep.ps1 ├── BuildReadme.ps1 ├── CleanUpGitHubReleases.ps1 ├── Get-MarketPlaceImages.ps1 ├── Get-StandardTimeZoneJson.ps1 └── Readme.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── StandardSessionHostTemplate ├── DeploySessionHosts.bicep ├── DeploySessionHosts.json ├── Readme.md └── modules │ └── AVDStandardSessionHost.bicep ├── asdasd ├── deploy ├── arm │ └── DeployAVDSessionHostReplacer.json ├── bicep │ ├── DeployAVDSessionHostReplacer.bicep │ └── modules │ │ ├── RBACRoleAssignment.bicep │ │ ├── deployFunctionApp.bicep │ │ ├── deployKeyVault.bicep │ │ └── deployStandardTemplateSpec.bicep └── portal-ui │ └── portal-ui.json ├── docs ├── CodeDeploy-offline.md ├── CodeDeploy.md ├── CustomSessionHostTemplateSteps.md ├── Parameters.md ├── Permissions.md └── icons │ └── powershell.png └── workflows └── Development.yml /.github/workflows/Build FunctionAppRelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/.github/workflows/Build FunctionAppRelease.yml -------------------------------------------------------------------------------- /.github/workflows/Build deployAVDSessionHostReplacer bicep file into ARM.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/.github/workflows/Build deployAVDSessionHostReplacer bicep file into ARM.yml -------------------------------------------------------------------------------- /.github/workflows/CreateRelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/.github/workflows/CreateRelease.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | temp 2 | URLs.txt 3 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Build/Bicep/FunctionApps.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/Build/Bicep/FunctionApps.bicep -------------------------------------------------------------------------------- /Build/Bicep/Modules/RBACRoleAssignment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/Build/Bicep/Modules/RBACRoleAssignment.bicep -------------------------------------------------------------------------------- /Build/Build-Release-Body.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/Build/Build-Release-Body.ps1 -------------------------------------------------------------------------------- /Build/Build-Zip-File.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/Build/Build-Zip-File.ps1 -------------------------------------------------------------------------------- /Build/Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/Build/Build.ps1 -------------------------------------------------------------------------------- /Build/BuildParams.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/Build/BuildParams.ps1 -------------------------------------------------------------------------------- /Build/Update-Repo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/Build/Update-Repo.ps1 -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /FunctionApp/.funcignore: -------------------------------------------------------------------------------- 1 | .git* 2 | .vscode 3 | local.settings.json 4 | test -------------------------------------------------------------------------------- /FunctionApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/.gitignore -------------------------------------------------------------------------------- /FunctionApp/FunctionParameters.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/FunctionParameters.psd1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/SessionHostReplacer.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/SessionHostReplacer.psd1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/SessionHostReplacer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/SessionHostReplacer.psm1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/changelog.md -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/en-us/about_SessionHostReplacer.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/en-us/about_SessionHostReplacer.help.txt -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/en-us/strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/en-us/strings.psd1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/functions/Deploy-SHRSessionHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/functions/Deploy-SHRSessionHost.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/functions/Get-SHRHostPoolDecision.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/functions/Get-SHRHostPoolDecision.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/functions/Get-SHRLatestImageVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/functions/Get-SHRLatestImageVersion.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/functions/Get-SHRRunningDeployment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/functions/Get-SHRRunningDeployment.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/functions/Get-SHRSessionHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/functions/Get-SHRSessionHost.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/functions/Get-SHRSessionHostParameters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/functions/Get-SHRSessionHostParameters.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/functions/Get-SHRTemplateSpecVersionResourceId.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/functions/Get-SHRTemplateSpecVersionResourceId.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/functions/Remove-SHRSessionHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/functions/Remove-SHRSessionHost.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/functions/Remove-SHRSessionHostEntraDevice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/functions/Remove-SHRSessionHostEntraDevice.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/functions/Remove-SHRSessionHostIntuneDevice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/functions/Remove-SHRSessionHostIntuneDevice.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/functions/readme.md -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/internal/configurations/configuration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/internal/configurations/configuration.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/internal/configurations/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/internal/configurations/readme.md -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/internal/functions/ConvertTo-CaseInsensitiveHashtable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/internal/functions/ConvertTo-CaseInsensitiveHashtable.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/internal/functions/Get-RandomPassword.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/internal/functions/Get-RandomPassword.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/internal/functions/Send-SHRDrainNotification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/internal/functions/Send-SHRDrainNotification.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/internal/functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/internal/functions/readme.md -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/internal/scriptblocks/scriptblocks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/internal/scriptblocks/scriptblocks.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/internal/scripts/license.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/internal/scripts/license.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/internal/scripts/postimport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/internal/scripts/postimport.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/internal/scripts/preimport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/internal/scripts/preimport.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/internal/scripts/strings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/internal/scripts/strings.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/internal/tepp/assignment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/internal/tepp/assignment.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/internal/tepp/example.tepp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/internal/tepp/example.tepp.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/internal/tepp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/internal/tepp/readme.md -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/readme.md -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/tests/functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/tests/functions/readme.md -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/tests/general/FileIntegrity.Exceptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/tests/general/FileIntegrity.Exceptions.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/tests/general/FileIntegrity.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/tests/general/FileIntegrity.Tests.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/tests/general/Help.Exceptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/tests/general/Help.Exceptions.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/tests/general/Help.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/tests/general/Help.Tests.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/tests/general/Manifest.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/tests/general/Manifest.Tests.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/tests/general/PSScriptAnalyzer.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/tests/general/PSScriptAnalyzer.Tests.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/tests/general/strings.Exceptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/tests/general/strings.Exceptions.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/tests/general/strings.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/tests/general/strings.Tests.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/tests/pester.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/tests/pester.ps1 -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/tests/readme.md -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/xml/SessionHostReplacer.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/xml/SessionHostReplacer.Format.ps1xml -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/xml/SessionHostReplacer.Types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/xml/SessionHostReplacer.Types.ps1xml -------------------------------------------------------------------------------- /FunctionApp/Modules/SessionHostReplacer/xml/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/Modules/SessionHostReplacer/xml/readme.md -------------------------------------------------------------------------------- /FunctionApp/TimerTrigger1/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/TimerTrigger1/function.json -------------------------------------------------------------------------------- /FunctionApp/TimerTrigger1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/TimerTrigger1/readme.md -------------------------------------------------------------------------------- /FunctionApp/TimerTrigger1/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/TimerTrigger1/run.ps1 -------------------------------------------------------------------------------- /FunctionApp/TimerTrigger1/sample.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FunctionApp/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/host.json -------------------------------------------------------------------------------- /FunctionApp/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/profile.ps1 -------------------------------------------------------------------------------- /FunctionApp/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/FunctionApp/requirements.psd1 -------------------------------------------------------------------------------- /HelperScripts/BuildParametersForBicep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/HelperScripts/BuildParametersForBicep.ps1 -------------------------------------------------------------------------------- /HelperScripts/BuildReadme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/HelperScripts/BuildReadme.ps1 -------------------------------------------------------------------------------- /HelperScripts/CleanUpGitHubReleases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/HelperScripts/CleanUpGitHubReleases.ps1 -------------------------------------------------------------------------------- /HelperScripts/Get-MarketPlaceImages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/HelperScripts/Get-MarketPlaceImages.ps1 -------------------------------------------------------------------------------- /HelperScripts/Get-StandardTimeZoneJson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/HelperScripts/Get-StandardTimeZoneJson.ps1 -------------------------------------------------------------------------------- /HelperScripts/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/HelperScripts/Readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /StandardSessionHostTemplate/DeploySessionHosts.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/StandardSessionHostTemplate/DeploySessionHosts.bicep -------------------------------------------------------------------------------- /StandardSessionHostTemplate/DeploySessionHosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/StandardSessionHostTemplate/DeploySessionHosts.json -------------------------------------------------------------------------------- /StandardSessionHostTemplate/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/StandardSessionHostTemplate/Readme.md -------------------------------------------------------------------------------- /StandardSessionHostTemplate/modules/AVDStandardSessionHost.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/StandardSessionHostTemplate/modules/AVDStandardSessionHost.bicep -------------------------------------------------------------------------------- /asdasd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/asdasd -------------------------------------------------------------------------------- /deploy/arm/DeployAVDSessionHostReplacer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/deploy/arm/DeployAVDSessionHostReplacer.json -------------------------------------------------------------------------------- /deploy/bicep/DeployAVDSessionHostReplacer.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/deploy/bicep/DeployAVDSessionHostReplacer.bicep -------------------------------------------------------------------------------- /deploy/bicep/modules/RBACRoleAssignment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/deploy/bicep/modules/RBACRoleAssignment.bicep -------------------------------------------------------------------------------- /deploy/bicep/modules/deployFunctionApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/deploy/bicep/modules/deployFunctionApp.bicep -------------------------------------------------------------------------------- /deploy/bicep/modules/deployKeyVault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/deploy/bicep/modules/deployKeyVault.bicep -------------------------------------------------------------------------------- /deploy/bicep/modules/deployStandardTemplateSpec.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/deploy/bicep/modules/deployStandardTemplateSpec.bicep -------------------------------------------------------------------------------- /deploy/portal-ui/portal-ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/deploy/portal-ui/portal-ui.json -------------------------------------------------------------------------------- /docs/CodeDeploy-offline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/docs/CodeDeploy-offline.md -------------------------------------------------------------------------------- /docs/CodeDeploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/docs/CodeDeploy.md -------------------------------------------------------------------------------- /docs/CustomSessionHostTemplateSteps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/docs/CustomSessionHostTemplateSteps.md -------------------------------------------------------------------------------- /docs/Parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/docs/Parameters.md -------------------------------------------------------------------------------- /docs/Permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/docs/Permissions.md -------------------------------------------------------------------------------- /docs/icons/powershell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/docs/icons/powershell.png -------------------------------------------------------------------------------- /workflows/Development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AVDSessionHostReplacer/HEAD/workflows/Development.yml --------------------------------------------------------------------------------