Windows 8 计划任务不起作用

Windows 8 计划任务不起作用

我有这个批处理,它执行一个调用 powershell 脚本的计划任务,但我无法让它在 windows 8 中运行。它在 windows 7 上运行良好,但当我在 windows 8 中使用它时,它一直卡住。我的问题是任务没有启动,但它被创建并安排好了。当我启动 powershell 脚本而没有安排时,它运行良好。

批:

@copy /y wall.jpg %APPDATA%
@copy /y cuenta.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 )

基本上,我正在呼叫一台每隔 x 分钟更换壁纸的 ps1。有人解决过这样的问题吗?

相关内容