Jump to content

Ping Log, reboot, log


Joeb1
 Share

Recommended Posts

I have the need to have a system reboot and log a simple ping over and over. I trie to create a script but it does not log and gives me the error "The process cannot access the file because it is being used by another process" I close the file but that is not it. Not sure what process it means. Once I get it debugged I will set windows to auto login and run this overnight to debug a server issue I have. Here is the code:

Dim $time, $NamFile

$NamFile = "c:\nic\test.txt"

$time = @MON & "/" & @MDAY & " " & @HOUR & ":" & @MIN

If FileExists($NamFile) Then

FileOpen($NamFile,1)

FileWriteLine($NamFile, $Time)

FileClose($NamFile)

Else

FileOpen($NamFile,9)

FileWriteLine($NamFile, $Time)

FileClose($NamFile)

EndIf

Run("cmd.exe")

WinWaitActive("C:\WINDOWS\system32\cmd.exe")

Send("Ping 12.96.235.97 >>c:\nic\test.txt")

Send (@CR)

Send ("exit")

Send (@CR)

# shutdown(2)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...