Programming And Algorithm

This is python coding for Network commands import tkinter as windowToolKitInterfaceimport osdef routeCommand(): result= os.system(“route”)def netStatCommand(): result= os.system(“netstat”) print(result)def nbtStatCommand(): result = os.system(“nbtstat “) print(result)def tracertCommand(): result = os.system(“tracert “) print(result)def pathPingCommand(): result = os.system(“pathping “) print(result)def ipconfigCommand(): result = os.system(“ipconfig”) print(result)myWindow = windowToolKitInterface.Tk()myWindow.title(“Networking program”)myWindow.configure(background=’green’)myWindow.geometry(“300×170″)myWindowFrame = windowToolKitInterface.Frame(myWindow)myWindowFrame.pack()routeButton = windowToolKitInterface.Button(myWindowFrame, text=”route”, fg=”black”,command=routeCommand)netStatButton= windowToolKitInterface.Button(myWindowFrame, text=”Netstat”, fg =Continue reading “Programming And Algorithm”

Introduce Yourself (Example Post)

This is an example post, originally published as part of Blogging University. Enroll in one of our ten programs, and start your blog right. You’re going to publish a post today. Don’t worry about how your blog looks. Don’t worry if you haven’t given it a name yet, or you’re feeling overwhelmed. Just click theContinue reading “Introduce Yourself (Example Post)”

Design a site like this with WordPress.com
Get started