lgnihlman 0 Posted October 8, 2007 I have a problem running my compiled script as a service in Windows XP. I've used INSTSRV SRVANY to create the service and I've also tried SC command to create the service. I've read the FAQ and checked that I have the Interact parameter configured for my service. The problem is that the service will not start correctly, I get an error saying that the service did not respond in time. Any ideas ? Share this post Link to post Share on other sites
Bert 1,437 Posted October 8, 2007 http://www.autoitscript.com/forum/index.php?showtopic=37289 The Vollatran project My blog: http://www.vollysinterestingshit.com/ Share this post Link to post Share on other sites
ptrex 163 Posted October 9, 2007 @all Look at my signature for "Run Au3 as a Windows Service " regards, ptrex Contributions :Firewall Log Analyzer for XP - Creating COM objects without a need of DLL's - UPnP support in AU3Crystal Reports Viewer - PDFCreator in AutoIT - Duplicate File FinderSQLite3 Database functionality - USB Monitoring - Reading Excel using SQLRun Au3 as a Windows Service - File Monitor - Embedded Flash PlayerDynamic Functions - Control Panel Applets - Digital Signing Code - Excel Grid In AutoIT - Constants for Special Folders in WindowsRead data from Any Windows Edit Control - SOAP and Web Services in AutoIT - Barcode Printing Using PS - AU3 on LightTD WebserverMS LogParser SQL Engine in AutoIT - ImageMagick Image Processing - Converter @ Dec - Hex - Bin -Email Address Encoder - MSI Editor - SNMP - MIB ProtocolFinancial Functions UDF - Set ACL Permissions - Syntax HighLighter for AU3ADOR.RecordSet approach - Real OCR - HTTP Disk - PDF Reader Personal Worldclock - MS Indexing Engine - Printing ControlsGuiListView - Navigation (break the 4000 Limit barrier) - Registration Free COM DLL Distribution - Update - WinRM SMART Analysis - COM Object Browser - Excel PivotTable Object - VLC Media Player - Windows LogOnOff Gui -Extract Data from Outlook to Word & Excel - Analyze Event ID 4226 - DotNet Compiler Wrapper - Powershell_COM - New Share this post Link to post Share on other sites
lgnihlman 0 Posted October 9, 2007 Thanx Ptrex, problem solved ! I actually needed a way to install the .exe file as a service from within another program and thanks to your GUI I got it right. I ended up doing it like this on Windows XP: From the command prompt (Inact is the name of my service) sc create Inact binPath= srvany.exe DisplayName= "Your text here" sc description Inact "App description here" sc config Inact start= auto type= own type= interact And then fix the registry HKLM\SYSTEM\CurrentControlSet\Services\Parameters\Application\, "REG_SZ", "C:\Program\Inact\Inact.exe" HKLM\SYSTEM\CurrentControlSet\Services\Parameters\AppDirectory, "REG_SZ", C:\Program\Inact And finally start the service sc start Inact Share this post Link to post Share on other sites