Hi,

thank's a lot for you're help, but if i be honest i don't undestand it. I fount a lot of scripts in this forum, like you said, but with this i can't solve my problems i think...

This is my Problem:

Code:
;*******************************************************************************       
;* Checking Applications - Symantec AntiVirus *
;*******************************************************************************

$NoNavWarn = ExistKey("$HKLMS\INTEL\LANDesk\VirusProtect6\CurrentVersion\Quarantine")
$ReadClientType = ReadValue("$HKLMS\INTEL\LANDesk\VirusProtect6\CurrentVersion", "ClientType")
$NAVHome = ReadValue("$HKLMS\INTEL\LANDesk\VirusProtect6\CurrentVersion\", "Home Directory")
$NavExecutable = GetFileVersion($NAVHome +"\vpc32.exe","ProductVersion")
$NavParent = ReadValue("$HKLMS\Intel\LANDesk\VirusProtect6\CurrentVersion","Parent")
If $NoNavWarn = 0
Select
Case $ReadClientType = 1 $ClientType = "Connected Client"
Case $ReadClientType = 2 $ClientType = "Stand-alone Client"
EndSelect
? " * Symantec AntiVirus Client Check, Ok"
? " AntiVirus Engine Version: " + $NavExecutable
? " AntiVirus Client Type : " + $ClientType
If $ReadClientType = 2
? " AntiVirus Parent Server : "color w+/n "none"
Else
? "AntiVirus Parent Server : "color w+/n + $NavParent
EndIf
Else
? "* Starting to install AntiVirus Client"

At this time the Client should be installed. So i need a script, that gaves me administrator rights and then install the Client automaticaly. Have you got an Idea???




So this is my code? Perhaps someone have an Idea or a script that could help me...

Thanks a lot for your help...

Greetings
schiba82