summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/incidental_win_reboot/templates/post_reboot.ps1
blob: e4a99a721deb2851a192e5b25d46387de91be4ac (plain)
1
2
3
4
5
6
7
8
if (Test-Path -Path '{{win_output_dir}}\win_reboot_test') {
    New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager' `
        -Name PendingFileRenameOperations `
        -Value @("\??\{{win_output_dir}}\win_reboot_test`0") `
        -PropertyType MultiString
    Restart-Computer -Force
    exit 1
}