I'm trying to make a batch file which is waiting for 6 packets ping from a certain ip from the network. When the machine receives the 6 echo requests should shutdown automatically. I will make this batch file to run at startup as a service, i dont need help for this part. Can anyone help me with the listening part ?
Batch listen for ping to shutdown
517 Views Asked by user3785969 At
1
There are 1 best solutions below
Related Questions in BATCH-FILE
- Get Maximum Log Size
- Running batch fine onclick delay
- Automating Telnet Scripts from .bat with a teamspeak instance
- Variable setting exhibits unexpected behavior when set inside for loop
- Execute a command over multiple files
- How to run multiple "mvn test"-commands from batch file?
- Referencing a Schema's table batch/perl
- Can I use \ and / to be directory delimiter in CLASSPATH of .bat
- SSIS exit code error with batch file
- CMD/BATCH - Had to run batch script 3 times to get full result
- Trying to create a Bath file that will copy a specific directory path (no lower) and zip the directories in that path
- curl command don't work in some cases
- Set environment in current cmd using batch script
- What is the correct way to pass the password to OpenSSL
- Batch file to process files in sub sub directory
Related Questions in PING
- Mule ESB & PING Identity Integration
- How to get output of ping command without Ping statistics?
- running multiple threads with continous value returns (ping program)
- How Can I ping or create a scoket connection with my friend?
- WINDOWS PROMPT Getting IP of webpages from file
- Getting Respond Time from Ping Command
- Ping Azure VM in same subnet using VM name
- Temporary network outage when Symantec Endpoint Network protection is enabled
- Pinging multiple times using InetAddress makes GUI unresponsive
- Ping betwwen OF switch and Non-OF switch
- Shell Script: Speed of transfer of a hop using command Ping
- How to modify output of ping command in terminal using shell?
- Memory dump using Ping .net
- Can not ping google cloud sql
- Grab IP addresses only by pinging list of server names using Batch
Related Questions in SHUTDOWN
- Confusion about CTRL_SHUTDOWN_EVENT handling in DLLs and WM_QUERYENDSESSION
- Processing - Shutdown a computer
- Unstable instances and unexpected instance shutdown with GAE / java
- How to hide Shut Down and Log Off through commandline(script) without reboot
- RESTEasy JAX-RS application not calling @PreDestroy
- Linux Shutdown and Java Shutdown Hook
- InitiateShutdown, can't understand a value passed to the function
- Batch listen for ping to shutdown
- How to run applescript on shutdown?
- C++: Remotely hibernate a PC
- Scheduler with name "DefaultQuartzScheduler" already exists and scheduler cannot be started after shutdown
- Windows server power off button and blocked sessions
- How to trigger the java shutdown hook for a keep running process?
- How to tell if a Windows server is in the act of shutting down
- do some code before shutdown windows
Related Questions in PACKETS
- Java sending handshake packets to minecraft server
- Using scapy with wifi
- Check if User is Authenticated in OpenFire
- Scapy: Adding more fields to fields_desc
- Android(XMPP)cant get Presence packets but can get Message packets without using default Roster
- How to format TCP header values and push to a byte array for packet test in Java
- Batch listen for ping to shutdown
- Why can't I send packets with scapy? (python 2.7)
- Python - Twisted - Simple UDP forwarder. Preserve source IP?
- Sending UDP packet from Android to Arduino
- jNetPcap Packet discard if coming from specific IP address
- Is it possible to count number of ICMP packets sent/received per interface in Linux?
- Sockets - Packet Sending Exception
- I want to create a input filter and buffer allowing only a particular type of data packets on a port
- Scapy cannot sniff some packets
Related Questions in LISTEN
- Batch listen for ping to shutdown
- Socket listen when using Single Client
- Cannot use port 80 for my application
- Listening for MessageBox and Dialog results in my application
- Socket programming - API doubt
- How to listen on a specific port on iPhone ios4.2?
- Listen/register 2G 3G change on android
- Android SDK - is multicastlock working? it does not work when screen is off!
- listen() ignores the backlog argument?
- Setting listen() backlog to 0
- Disable event listening for objects
- Python turtle - pause execution while listening for keypress
- how can nodejs run single tcp server instance on multiple different ports on single nodejs process
- flutter firstWhere not responding (firestore)
- Apache server - not loading localhost
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
As an alternative, why not create a file in a special place (perhaps even with special content) that the "listening" script constantly looks for, and as soon as it exists, deletes the file and shuts the machine down?
This could at least be done in batch.
Windows has no native sleep command. An alternative strategy that others have thought of that have less overhead than PowerShell (though, since it's just sleeping, the overhead probably doesn't matter) is to ping the localhost adapter times (e.g.
ping -n 60 127.0.0.1).Of course, the whole script could be written in PowerShell, but then you would have to fiddle with ExecutionPolicy and other things.