network application scripting
network application scripting
- Subject: network application scripting
- From: "Nathan Ardoin" <email@hidden>
- Date: Thu, 04 Jan 2001 17:56:18 -0800
Ok, I figured out the first part, thanx to all who helped, now I need a script to lock the ip address router address, etc. inside the TCP/IP control panel this is what I have and it does not yield any results:
tell application "Network Setup Scripting"
try
open database
set the transaction_ID to begin transaction
tell TCPIP v4 configuration "CSF 10th Floor"
authenticate TCPIP v4 configuration "CSF 10th Floor" with password "mactech"
if the result is true then
set user mode to administration
set protection of IP address of TCPIP v4 configuration "CFS 10th Floor" to locked
end if
end tell
end transaction
end try
end tell
anyone have any thoughts?
-nate