
我有這個批次處理,它使計劃任務調用 powershell 腳本,但我無法使其在 Windows 8 中運行。我的問題是任務沒有啟動,但它已建立並計劃。當我啟動 powershell 腳本而不安排它時,它運作得很好。
批:
@copy /y wall.jpg %APPDATA%
@copy /ycuenta.ps1 %APPDATA%
schtasks /create /sc 分鐘 /mo 1 /tn 桌布 /tr“powershell -ExecutionPolicy ByPass -File %appdata%\cuenta.ps1”
電源外殼 :
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 )
基本上我打電話給 ps1,它每 x 分鐘更換一次壁紙。有人解決過這樣的問題嗎?