Displaying 1 result from an estimated 1 matches for "serviceobj".
Did you mean:
servicefb
2003 Aug 28
0
Using PXELINUX with Windows 2000 DHCP and TFTP
...by
"expand TFTPD.EX_ tftpd.exe". (You may delete the TFTPD.EX_ file now if
you wish.)
3. tftpd.exe runs as a service. To install the service, create a file
named tftpdins.vbs (or any name that ends in .vbs will do) and copy and
paste the following to the file, then save the file:
Set ServiceObj = GetObject("WinMgmts:Win32_Service")
CreateSuccess = ServiceObj.Create("tftpd", _
"Trivial File Transfer Protocol Daemon",
_
"%SYSTEMROOT%\System32\tftpd.exe", _
16, _
1, _
"Automatic", _
FALSE, _
NULL, _
NULL, _...