
Ich habe diese Batch-Aufgabe, die eine geplante Aufgabe durch Aufrufen eines Powershell-Skripts ausführt, und ich kann sie unter Windows 8 nicht ausführen. Unter Windows 7 funktioniert sie einwandfrei, aber wenn ich sie unter Windows 8 verwende, bleibt sie hängen. Mein Problem ist, dass die Aufgabe nicht gestartet wird, aber erstellt und geplant ist. Wenn ich das Powershell-Skript ohne Planung starte, funktioniert es einwandfrei.
Charge:
@copy /y wall.jpg %APPDATA%
@copy /y cuenta.ps1 %APPDATA%
schtasks /create /sc minute /mo 1 /tn wallpaper /tr "powershell -ExecutionPolicy ByPass -File %appdata%\cuenta.ps1"
Power Shell :
Add-Type @"
using System;
using System.Runtime.InteropServices;
using Microsoft.Win32;
namespace Wallpaper
{
public enum Style : int
{
Tile, Center, Stretch, NoChange
}
public class Setter {
public const int SetDesktopWallpaper = 20;
public const int UpdateIniFile = 0x01;
public const int SendWinIniChange = 0x02;
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
private static extern int SystemParametersInfo (int uAction, int uParam, string lpvParam, int fuWinIni);
public static void SetWallpaper ( string path, Wallpaper.Style style ) {
SystemParametersInfo( SetDesktopWallpaper, 0, path, UpdateIniFile | SendWinIniChange );
RegistryKey key = Registry.CurrentUser.OpenSubKey("Control Panel\\Desktop", true);
switch( style )
{
case Style.Stretch :
key.SetValue(@"WallpaperStyle", "2") ;
key.SetValue(@"TileWallpaper", "0") ;
break;
case Style.Center :
key.SetValue(@"WallpaperStyle", "1") ;
key.SetValue(@"TileWallpaper", "0") ;
break;
case Style.Tile :
key.SetValue(@"WallpaperStyle", "1") ;
key.SetValue(@"TileWallpaper", "1") ;
break;
case Style.NoChange :
break;
}
key.Close();
}
}
}
"@
[Wallpaper.Setter]::SetWallpaper( '%appdata%\wall.jpg', 0 )
Im Grunde rufe ich eine PS1 auf, die alle x Minuten das Hintergrundbild ändert. Hat jemand ein ähnliches Problem gelöst?