diff --git a/changes/jve-fix-lock-script-typo b/changes/jve-fix-lock-script-typo new file mode 100644 index 0000000000..bc314a8baf --- /dev/null +++ b/changes/jve-fix-lock-script-typo @@ -0,0 +1 @@ +- Removes references to Administrator accounts in the comments of the Windows lock script. \ No newline at end of file diff --git a/ee/server/service/embedded_scripts/windows_lock.ps1 b/ee/server/service/embedded_scripts/windows_lock.ps1 index 792cf71f19..c46010f961 100644 --- a/ee/server/service/embedded_scripts/windows_lock.ps1 +++ b/ee/server/service/embedded_scripts/windows_lock.ps1 @@ -1,4 +1,4 @@ -# PowerShell script to log off all non-administrative users and disable their accounts +# PowerShell script to log off all users and disable their accounts # Log off all users $loggedOffUsers = @{} @@ -32,4 +32,4 @@ Get-LocalUser | Where-Object { $_.Enabled -eq $true } | ForEach-Object { Write-Host "Disabled account for $username" } -Write-Host "All non-administrative users have been logged out and their accounts disabled." +Write-Host "All users have been logged out and their accounts disabled."