Hy all

I have a problem to run a kixtart script.
The script has to add a folder and a DLL on the c:\progam files\infostrait\ directory.

But there is one problem! If i'm a normal user i can't create folders there, it needs administrator right's to do so.

Is there a simpel way to run around that?
I need to run this script at the logon.

Here is a piece of the script i have now.

IF EXIST("c:\program files\infostrait\OutlookToSmarTeam\OutlookToSmarTeam.dll")
GOTO MAPPING

else

CD "c:\program files\infostrait"
md "OutlookToSmarTeam"
copy "\\server\SmData\ClientSoftware\VB6\OutlookToSmarTeam" "c:\program files\infostrait\OutlookToSmarTeam" /s

cd "OutlookToSmarTeam"
Shell "regsvr32 /s OutlookToSmarTeam.dll"


I hope you can help me out.
(srry for my bad english)