简体   繁体   English

Powershell脚本正在执行但无法正常工作

[英]Powershell script is executing but not working

I have a Powershell script which is running fine in Windows power shell IDE. 我有一个Powershell脚本,它可以在Windows Power Shell IDE中正常运行。 But when I am running it from SQL agent job it is running with no error but it isn't doing any operation. 但是,当我从SQL代理作业运行它时,它没有错误运行,但未执行任何操作。 Below is the message which I am getting in job history 以下是我在工作经历中得到的信息

     Executed as user: SERVER\SYSTEM. The string starting:  At line:1 
    char:1  +  <<<< "D:\FOLDER\POWERSCRIPT.ps1?  is missing the terminator: ". 
     At line:1 char:23  + "D:\FOLDER\POWERSCRIPT.ps1? <<<<      
     + CategoryInfo          : ParserError: (D:\FOLDER\POWERSCRIPT.ps1?:String) [],       ParentContainsErrorRecordException     
 + FullyQualifiedErrorId : 
TerminatorExpectedAtEndOfString.  Process Exit Code 0.  The step succeeded.

Though, I have ran it from service account which is "DOMAIN\\SERVICEACCOUNT" but it showing me "SERVERNAME**SYSTEM** 虽然,我是从服务帐户“ DOMAIN \\ SERVICEACCOUNT”运行的,但显示的是“ SERVERNAME ** SYSTEM **

Let me know if more details is required. 让我知道是否需要更多详细信息。

Edit- Script of Job 作业编辑脚本

DECLARE @jobId BINARY(16)
EXEC @ReturnCode =  msdb.dbo.sp_add_job @job_name=N'MYJOB', 
        @enabled=1, 
        @notify_level_eventlog=0, 
        @notify_level_email=0, 
        @notify_level_netsend=0, 
        @notify_level_page=0, 
        @delete_level=0, 
        @description=N'No description available.', 
        @category_name=N'[Uncategorized (Local)]', 
        @owner_login_name=N'DOMAIN\SERVICEAACCOUNT', @job_id = @jobId OUTPUT
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback
/****** Object:  Step [RUN MONITOR]    Script Date: 5/15/2015 11:01:29 AM ******/
EXEC @ReturnCode = msdb.dbo.sp_add_jobstep @job_id=@jobId, @step_name=N'RUN MONITOR', 
        @step_id=1, 
        @cmdexec_success_code=0, 
        @on_success_action=1, 
        @on_success_step_id=0, 
        @on_fail_action=2, 
        @on_fail_step_id=0, 
        @retry_attempts=0, 
        @retry_interval=0, 
        @os_run_priority=0, @subsystem=N'CmdExec', 
        @command=N'powershell “D:\FOLDER\POWERSCRIPT.ps1″', 
        @flags=0
@command=N'powershell “D:\FOLDER\POWERSCRIPT.ps1″',

The quote marks here don't look right. 这里的引号看起来不正确。 You should remove them and re-type them as double-quote marks, like this: 您应该删除它们,然后将其重新输入为双引号,如下所示:

@command=N'powershell "D:\FOLDER\POWERSCRIPT.ps1"',

Can you see the difference? 你能看到区别么? This sometimes occurs when copying and pasting values. 复制和粘贴值时有时会发生这种情况。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM