Environment : TS 7.3, Windows
I am trying to deploy files from one environment to another. I am getting the file/folder owner as System and Group as NT AUTHORITY\SYSTEM.
Is there any way I get atleast the workarea/parent folder user and group details inherited to the files and folders deployed.
Is there any way permision rules attribute helps.
<permissionRules directory="770" file="664" group="marketing" user="rroe"/>
I donot understand directory and file permission how they act in windows environment.
I tried by having permissions rules as
<permissionRules user="tsuser" group="tsgroup"/>
But it didnot workout.
Please help.
My Definition is as follows.
<definition name="FileListDeployment">
<source>
<fileSystem>
<filelist area="$sourceArea^" filePath="$fileList^">
<pathSpecification>
<path name="."/>
<targetRules area="$destarea^">
<comparisonRules dateDifferent="yes"/>
<permissionRules file="0644" directory="0755"/>
</targetRules>
</pathSpecification>
</filelist>
</fileSystem>
</source>
<target>
<transferRules doDeletes='no' dontDo='no' />
<targetFilesystem area="$targetArea^"/>
<replicationFarmLink>
<internal name="DeploymentForm"/>
</replicationFarmLink>
</target>
</definition>