Forum
network içerisinde script ile bir paylaşım dağıtmak istiyorum ama user lar yetkilerinden dolayı script çalışmıyor hata veriyor scriptin içeriği aşağıdaki gibidir. nasıl paylaştırabilirim.
set WshShell = WScript.CreateObject("WScript.Shell" )
strDesktop = WshShell.SpecialFolders("AllUsersDesktop" )
set oShellLink = WshShell.CreateShortcut(strDesktop & "\foto arsiv.lnk" )
oShellLink.TargetPath = "\\webfoto\foto arsiv"
oShellLink.WindowStyle = 1
oShellLink.IconLocation = "\\webfoto\foto arsiv"
oShellLink.Description = "foto arsiv"
oShellLink.WorkingDirectory = "\\webfoto\foto arsiv"
oShellLink.Save
MsgBox "Foto Arsiv Kısayol masa üstüne olusturulmustur. Iyi çalışmalar Dilerim", _
vbInformation + vbSystemModal, "Create shortcut"
bu paylasımın kısayolunu networkte share edilmiş bir yere atıp (herkesin okuyabildigi bir paylasım olmalı )
logon scriptte
xcopy \server\share\paylasim.lnk %userprofile%\desktop\paylasim.lnk
daha kolay degilmi hocam