Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Folder permissions


1 reply to this topic

fdmourao

fdmourao
  • Members
  • 18 posts

Posted 15 February 2005 - 12:42

Hi all,

I want my install package to create a folder, and then I want to change the security permissions for it. I want to set the Full Control permission for Everyone.

Is there a simple way to do this with InstallShield?

Thanx in advance!
Dario

Ralph Heger

Ralph Heger
  • Members
  • 3 posts

Posted 25 March 2005 - 08:52

Hi

I use an external solution:

Prog = "cacls";
s = "C:\myDirectory";
CmdLine = s + " /e /t /g " + myGroupname+":f";
LaunchAppAndWait ( Prog , CmdLine , LAAW_OPTION_WAIT );


Ralph