English 中文(简体)
无法从批量开始 VB Windows 服务
原标题:Cannot start a VB Windows Service from batch

我用Vision Studios 05在视觉基础中创建了自定义窗口服务。

服务在运行 Windows 服务器的服务器上 。 我安装了服务, 当我手动进入 Computer Management Start 服务时, 服务运行良好 。

我创建了一个批量文件, 使用 < code> NETSTART 命令启动服务。 当我运行批量文件时, 服务不会启动。 我从命令提示获得此消息 :

服务名正在启动 。

无法启动服务名称 。 服务没有报告错误 。 通过输入 NET HELPMSG 3543 可以获得更多的帮助 。

我不知道该怎么办。 ( Been "googling" 几小时。 ) 当我手动操作它的时候它就开始了, 但是它不会从批量文件开始。 谢谢!

问题回答

试着强迫它提升到批量文件

@ECHO OFF
:: Automatically elevate...

@ECHO OFF
SETLOCAL

:: Check if script was run with administrator privilages
    >nul 2>&1 "%SYSTEMROOT%system32cacls.exe" "%SYSTEMROOT%system32configsystem"

:: If the error flag is set, we do not have admin.
    IF "%ERRORLEVEL%"=="0" GOTO GOTADMIN

:UACPROMPT
    ECHO. Set UAC = CreateObject^("Shell.Application"^) > "%temp%getadmin.vbs"
    ECHO. UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%getadmin.vbs"
    "%TEMP%getadmin.vbs"
    EXIT /B

:GOTADMIN
    if exist "%temp%getadmin.vbs" ( del "%temp%getadmin.vbs" )
    CD /D "%~dp0"
ENDLOCAL
GOTO SCRIPTSTART


:: THE ACTUAL SCRIPT STARTS HERE
:SCRIPTSTART
NET START [whatever service]




相关问题
Is Shared ReadOnly lazyloaded?

I was wondering when I write Shared ReadOnly Variable As DataType = New DataType() Or alternatively Shared ReadOnly Variable As New DataType() Is it lazy loaded or as the instance initializes? ...

Entertaining a baby with VB.NET

I would like to write a little application in VB.NET that will detect a baby s cry. How would I get started with such an application?

Choose Enter Rather than Pressing Ok button

I have many fields in the page and the last field is a dropdown with list of values. When I select an item in a dropdown and press Enter, it doesn t do the "Ok". Instead I have to manually click on Ok ...

ALT Key Shortcuts Hidden

I am using VS2008 and creating forms. By default, the underscore of the character in a textbox when using an ampersand is not shown when I run the application. ex. "&Goto Here" is not ...

Set Select command in code

On button Click I want to Set the Select command of a Gridview. I do this and then databind the grid but it doesn t work. What am i doing wrong? protected void bttnView_Click(object sender, ...

Hover tooltip on specific words in rich text box?

I m trying to create something like a tooltip suddenly hoovering over the mouse pointer when specific words in the richt text box is hovered over. How can this be done?

热门标签