You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
443 B
18 lines
443 B
<Job Id="SpecialFolder">
|
|
<script language=PerlScript>
|
|
$WshShell = $WScript->CreateObject("WScript.Shell");
|
|
$numFolders = $WshShell->SpecialFolders->{Count};
|
|
$title = "PerlScript & WSH Example";
|
|
$style = 1;
|
|
|
|
for($i=0; $i<$numFolders; $i++) {
|
|
$ok_or_cancel = $WshShell->Popup(
|
|
$WshShell->SpecialFolders($i),
|
|
undef,
|
|
$title,
|
|
$style);
|
|
|
|
exit if ($ok_or_cancel == 2);
|
|
}
|
|
</script>
|
|
</job>
|