<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Example Workflow</title><link>https://sourceforge.net/p/varonis-datanywhere-powershell/wiki/Example%2520Workflow/</link><description>Recent changes to Example Workflow</description><atom:link href="https://sourceforge.net/p/varonis-datanywhere-powershell/wiki/Example%20Workflow/feed" rel="self"/><language>en</language><lastBuildDate>Sat, 23 Jan 2016 10:59:17 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/varonis-datanywhere-powershell/wiki/Example%20Workflow/feed" rel="self" type="application/rss+xml"/><item><title>Example Workflow modified by David Vekemans</title><link>https://sourceforge.net/p/varonis-datanywhere-powershell/wiki/Example%2520Workflow/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v7
+++ v8
@@ -22,39 +22,29 @@
 `Connect-DatAnywhereServer -DatAnywhereServer Server1 -Username my_user -Password my_pass`

 **Get the Root Home.**
-~~~~
-$RootHome = Get-DatAnywhereRoot -UNCPath "\\domain\dfs\users"
-if ($RootHome -eq $null) { Throw "Root home does not exists !" }
-~~~~
+`$RootHome = Get-DatAnywhereRoot -UNCPath "\\domain\dfs\users"`
+`if ($RootHome -eq $null) { Throw "Root home does not exists !" }`

-Then start a loop for each users to configure. This loop does the following:
-~~~~
-$TargetUserAccount = sam_account_name_of_user
-$HomeFolder = "\\domain\dfs\HOMEDIRS\$TargetUserAccount"
-~~~~
+**Then start a loop for each users to configure. This loop does the following:**
+`$TargetUserAccount = sam_account_name_of_user`
+`$HomeFolder = "\\domain\dfs\HOMEDIRS\$TargetUserAccount"`

 **Create the folders in the HomeDir of the user.**
-~~~~
-$null = New-Item -ItemType directory -Path "$HomeFolder\Sync"
-$null = New-Item -ItemType directory -Path "$HomeFolder\Sync\Envoi"
-$null = New-Item -ItemType directory -Path "$HomeFolder\Sync\Reception"
-~~~~
+`$null = New-Item -ItemType directory -Path "$HomeFolder\Sync"`
+`$null = New-Item -ItemType directory -Path "$HomeFolder\Sync\Envoi"`
+`$null = New-Item -ItemType directory -Path "$HomeFolder\Sync\Reception"`

 **To avoid that the users delete these folders in its HomeDir, we added a deny delete in NTFS for these 3 folders.**
-~~~~
-Add-NTFSAccess -Account DOMAIN\$TargetUserAccount -AccessRights Delete -AccessType Deny -AppliesTo ThisFolderOnly -Path "$HomeFolder\Sync"
-Add-NTFSAccess -Account DOMAIN\$TargetUserAccount -AccessRights Delete -AccessType Deny -AppliesTo ThisFolderOnly -Path "$HomeFolder\Sync\Envoi"
-Add-NTFSAccess -Account DOMAIN\$TargetUserAccount -AccessRights Delete -AccessType Deny -AppliesTo ThisFolderOnly -Path "$HomeFolder\Sync\Reception"
-~~~~
+`Add-NTFSAccess -Account DOMAIN\$TargetUserAccount -AccessRights Delete -AccessType Deny -AppliesTo ThisFolderOnly -Path "$HomeFolder\Sync"`
+`Add-NTFSAccess -Account DOMAIN\$TargetUserAccount -AccessRights Delete -AccessType Deny -AppliesTo ThisFolderOnly -Path "$HomeFolder\Sync\Envoi"`
+`Add-NTFSAccess -Account DOMAIN\$TargetUserAccount -AccessRights Delete -AccessType Deny -AppliesTo ThisFolderOnly -Path "$HomeFolder\Sync\Reception"`

 **Create the root for the sync folder of the user.** Remember as this one is not view only, we needed a new root. This new root must be per user, otherwise, they would have full stub access to their complete HomeDir.
 `$Root = Add-DatAnywhereRoot -RootName Sync -UNCPath "$HomeFolder\Sync" -IncludeNested -IsStub`

 **Edit the collaboration parameters on the sub folders Envoi and Reception**
-~~~~
-$null=Set-DatAnywhereSharedFolder -Root $Root -FolderPath "Envoi" -DownloadEnabled
-$null=Set-DatAnywhereSharedFolder -Root $Root -FolderPath "Reception" -UploadEnabled
-~~~~
+`$null=Set-DatAnywhereSharedFolder -Root $Root -FolderPath "Envoi" -DownloadEnabled`
+`$null=Set-DatAnywhereSharedFolder -Root $Root -FolderPath "Reception" -UploadEnabled`

 **Create the private workspace of the user**
 `$objWorkspace=Add-DatAnywherePrivateWorkspace -Name "Espace Personnel" -TargetUserAccount "DOMAIN\$TargetUserAccount"`
@@ -79,17 +69,20 @@

 If a user is removed from the AD group, the **delete loop** is triggered:
 `$HomeFolder = "\\domain\dfs\HOMEDIRS\$TargetUserAccount"`
+
 **Remove Workspace.**
 `Get-DatAnywherePrivateWorkspace -TargetUserAccount "DOOMAIN\$TargetUserAccount" -Name "Espace Personnel" | Remove-DatAnywherePrivateWorkspace`
+
 **Get Root Sync of user**
 `$Root = Get-DatAnywhereRoot -UNCpath "$HomeFolder\Sync" -ErrorAction SilentlyContinue`
+
 **Remove collaboration parameters** (same command as for configuration, but no configuration switches)
-~~~~
-Set-DatAnywhereSharedFolder -Root $Root -FolderPath "Envoi"
-Set-DatAnywhereSharedFolder -Root $Root -FolderPath "Reception"
-~~~~
+`Set-DatAnywhereSharedFolder -Root $Root -FolderPath "Envoi"`
+`Set-DatAnywhereSharedFolder -Root $Root -FolderPath "Reception"`
+
 **Remove Root**
 `Remove-DatAnywhereRoot -Root $Root`
+
 **Remove user from DN**
 `Get-DatAnywhereUser -UserAccount $TargetUserAccount | Remove-DatAnywhereUser`

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David Vekemans</dc:creator><pubDate>Sat, 23 Jan 2016 10:59:17 -0000</pubDate><guid>https://sourceforge.netdf107fb80f4d045f4aa05f4bbc0f90f037ec9916</guid></item><item><title>Example Workflow modified by David Vekemans</title><link>https://sourceforge.net/p/varonis-datanywhere-powershell/wiki/Example%2520Workflow/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v6
+++ v7
@@ -18,10 +18,10 @@

 Once this first root is created, we can run ou workflow:

-First connect to DN.
+**First connect to DN.**
 `Connect-DatAnywhereServer -DatAnywhereServer Server1 -Username my_user -Password my_pass`

-Get the Root Home.
+**Get the Root Home.**
 ~~~~
 $RootHome = Get-DatAnywhereRoot -UNCPath "\\domain\dfs\users"
 if ($RootHome -eq $null) { Throw "Root home does not exists !" }
@@ -33,64 +33,64 @@
 $HomeFolder = "\\domain\dfs\HOMEDIRS\$TargetUserAccount"
 ~~~~

-Create the folders in the HomeDir of the user.
+**Create the folders in the HomeDir of the user.**
 ~~~~
 $null = New-Item -ItemType directory -Path "$HomeFolder\Sync"
 $null = New-Item -ItemType directory -Path "$HomeFolder\Sync\Envoi"
 $null = New-Item -ItemType directory -Path "$HomeFolder\Sync\Reception"
 ~~~~

-To avoid that the users delete these folders in its HomeDir, we added a deny delete in NTFS for these 3 folders.
+**To avoid that the users delete these folders in its HomeDir, we added a deny delete in NTFS for these 3 folders.**
 ~~~~
 Add-NTFSAccess -Account DOMAIN\$TargetUserAccount -AccessRights Delete -AccessType Deny -AppliesTo ThisFolderOnly -Path "$HomeFolder\Sync"
 Add-NTFSAccess -Account DOMAIN\$TargetUserAccount -AccessRights Delete -AccessType Deny -AppliesTo ThisFolderOnly -Path "$HomeFolder\Sync\Envoi"
 Add-NTFSAccess -Account DOMAIN\$TargetUserAccount -AccessRights Delete -AccessType Deny -AppliesTo ThisFolderOnly -Path "$HomeFolder\Sync\Reception"
 ~~~~

-Create the root for the sync folder of the user. Remember as this one is not view only, we needed a new root. This new root must be per user, otherwise, they would have full stub access to their complete HomeDir.
+**Create the root for the sync folder of the user.** Remember as this one is not view only, we needed a new root. This new root must be per user, otherwise, they would have full stub access to their complete HomeDir.
 `$Root = Add-DatAnywhereRoot -RootName Sync -UNCPath "$HomeFolder\Sync" -IncludeNested -IsStub`

-Edit the collaboration parameters on the sub folders Envoi and Reception
+**Edit the collaboration parameters on the sub folders Envoi and Reception**
 ~~~~
 $null=Set-DatAnywhereSharedFolder -Root $Root -FolderPath "Envoi" -DownloadEnabled
 $null=Set-DatAnywhereSharedFolder -Root $Root -FolderPath "Reception" -UploadEnabled
 ~~~~

-Create the private workspace of the user
+**Create the private workspace of the user**
 `$objWorkspace=Add-DatAnywherePrivateWorkspace -Name "Espace Personnel" -TargetUserAccount "DOMAIN\$TargetUserAccount"`

-Add the folders in the Workspace.
+**Add the folders in the Workspace.**
 For this wee need first to create an array of "Worspace Folder" objects. Indeed, there is no command such as add folder or remove folder in a workspace. Each time you want to change the content of a workspace, you need to set the list of folder. So to add or remove a folder, just generate and updated list of folder and set it in the workspace.
 If the list is empty, the workspace all folders will be removed from the workspace.
 Note also that I was not able to find an API (an admin one) that list the folder presently configured in a workspace. So you need to have another way to know this information when you want to modify a workspace.

-Create the folder objects array:
+**Create the folder objects array:**
 `$WksFolders = @()`
-First we add the subfolder "sam_account_name" from the HomeDir Root.
+**First we add the subfolder "sam_account_name" from the HomeDir Root.**
 `$WksFolders += $RootHome | New-DatAnywhereWorkspaceFolder -Name "$TargetUserAccount (HomeDir)" -PathFromRoot $TargetUserAccount`
-Then we add the Sync Root of the user, with no subfolder.
+**Then we add the Sync Root of the user, with no subfolder.**
 `$WksFolders += $Root | New-DatAnywhereWorkspaceFolder -Name Sync `
-Finaly, we set these folders into the workspace.
+**Finaly, we set these folders into the workspace.**
 `Set-DatAnywhereFolderInPrivateWorkspace -Workspace $objWorkspace -WorkspaceFolder $WksFolders`

 That's it for the loop.
 Note that the list of users is managed by an Active Directory group.
 Each time a user is added into the AD group that gives access to DatAnywhere, the script detects it (script runs twice a day) and perform the configuration.

-If a user is removed from the AD group, the delet loop is triggered:
+If a user is removed from the AD group, the **delete loop** is triggered:
 `$HomeFolder = "\\domain\dfs\HOMEDIRS\$TargetUserAccount"`
-Remove Workspace.
+**Remove Workspace.**
 `Get-DatAnywherePrivateWorkspace -TargetUserAccount "DOOMAIN\$TargetUserAccount" -Name "Espace Personnel" | Remove-DatAnywherePrivateWorkspace`
-Get Root Sync of user
+**Get Root Sync of user**
 `$Root = Get-DatAnywhereRoot -UNCpath "$HomeFolder\Sync" -ErrorAction SilentlyContinue`
-Remove collaboration parameters (same command as for configuration, but no configuration switches)
+**Remove collaboration parameters** (same command as for configuration, but no configuration switches)
 ~~~~
 Set-DatAnywhereSharedFolder -Root $Root -FolderPath "Envoi"
 Set-DatAnywhereSharedFolder -Root $Root -FolderPath "Reception"
 ~~~~
-Remove Root
+**Remove Root**
 `Remove-DatAnywhereRoot -Root $Root`
-Remove user from DN
+**Remove user from DN**
 `Get-DatAnywhereUser -UserAccount $TargetUserAccount | Remove-DatAnywhereUser`

 This last command is dangerous if you have users with the same First Name and Last Name, because the DN API used return only DN userID and DN userName. There is no link with the AD account or AD SID. So when you search a user by its account, the string "First Name, Last Name" is gathered from the AD and then the user is searched n DN with this value.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David Vekemans</dc:creator><pubDate>Sat, 23 Jan 2016 10:56:14 -0000</pubDate><guid>https://sourceforge.net71362dc84f3d300853c4d9e4f0005c9cf5c42a8b</guid></item><item><title>Example Workflow modified by David Vekemans</title><link>https://sourceforge.net/p/varonis-datanywhere-powershell/wiki/Example%2520Workflow/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v5
+++ v6
@@ -9,7 +9,7 @@
 6. A subfolder "Reception" (=receive) of the folder "sync" allow users to receive files from other people using DatAnywhere

-Unfortunetaly, the "view only" mode is only configurable by root in DN, and not by folder. And you cannot add tow root with the same path. So we had to trick DN by creating two entries in our DFS that points to the same folder:
+Unfortunetaly, the "view only" and the 'stub" modes are only configurable by root in DN, and not by folder. And you cannot add two roots with the same path. So we had to trick DN by creating two entries in our DFS that points to the same folder:
 \\domain\dfs\users
 \\domain\dfs\homedir

@@ -22,29 +22,79 @@
 `Connect-DatAnywhereServer -DatAnywhereServer Server1 -Username my_user -Password my_pass`

 Get the Root Home.
-
 ~~~~
 $RootHome = Get-DatAnywhereRoot -UNCPath "\\domain\dfs\users"
 if ($RootHome -eq $null) { Throw "Root home does not exists !" }
 ~~~~

 Then start a loop for each users to configure. This loop does the following:
-
 ~~~~
 $TargetUserAccount = sam_account_name_of_user
 $HomeFolder = "\\domain\dfs\HOMEDIRS\$TargetUserAccount"
 ~~~~
+
 Create the folders in the HomeDir of the user.
-
 ~~~~
 $null = New-Item -ItemType directory -Path "$HomeFolder\Sync"
 $null = New-Item -ItemType directory -Path "$HomeFolder\Sync\Envoi"
 $null = New-Item -ItemType directory -Path "$HomeFolder\Sync\Reception"
 ~~~~
-To avoid tha the users delete these folders in its HomeDir, we added a deny delete in NTFS for these 3 folders.

+To avoid that the users delete these folders in its HomeDir, we added a deny delete in NTFS for these 3 folders.
 ~~~~
 Add-NTFSAccess -Account DOMAIN\$TargetUserAccount -AccessRights Delete -AccessType Deny -AppliesTo ThisFolderOnly -Path "$HomeFolder\Sync"
 Add-NTFSAccess -Account DOMAIN\$TargetUserAccount -AccessRights Delete -AccessType Deny -AppliesTo ThisFolderOnly -Path "$HomeFolder\Sync\Envoi"
 Add-NTFSAccess -Account DOMAIN\$TargetUserAccount -AccessRights Delete -AccessType Deny -AppliesTo ThisFolderOnly -Path "$HomeFolder\Sync\Reception"
 ~~~~
+
+Create the root for the sync folder of the user. Remember as this one is not view only, we needed a new root. This new root must be per user, otherwise, they would have full stub access to their complete HomeDir.
+`$Root = Add-DatAnywhereRoot -RootName Sync -UNCPath "$HomeFolder\Sync" -IncludeNested -IsStub`
+
+Edit the collaboration parameters on the sub folders Envoi and Reception
+~~~~
+$null=Set-DatAnywhereSharedFolder -Root $Root -FolderPath "Envoi" -DownloadEnabled
+$null=Set-DatAnywhereSharedFolder -Root $Root -FolderPath "Reception" -UploadEnabled
+~~~~
+
+Create the private workspace of the user
+`$objWorkspace=Add-DatAnywherePrivateWorkspace -Name "Espace Personnel" -TargetUserAccount "DOMAIN\$TargetUserAccount"`
+
+Add the folders in the Workspace.
+For this wee need first to create an array of "Worspace Folder" objects. Indeed, there is no command such as add folder or remove folder in a workspace. Each time you want to change the content of a workspace, you need to set the list of folder. So to add or remove a folder, just generate and updated list of folder and set it in the workspace.
+If the list is empty, the workspace all folders will be removed from the workspace.
+Note also that I was not able to find an API (an admin one) that list the folder presently configured in a workspace. So you need to have another way to know this information when you want to modify a workspace.
+
+Create the folder objects array:
+`$WksFolders = @()`
+First we add the subfolder "sam_account_name" from the HomeDir Root.
+`$WksFolders += $RootHome | New-DatAnywhereWorkspaceFolder -Name "$TargetUserAccount (HomeDir)" -PathFromRoot $TargetUserAccount`
+Then we add the Sync Root of the user, with no subfolder.
+`$WksFolders += $Root | New-DatAnywhereWorkspaceFolder -Name Sync `
+Finaly, we set these folders into the workspace.
+`Set-DatAnywhereFolderInPrivateWorkspace -Workspace $objWorkspace -WorkspaceFolder $WksFolders`
+
+That's it for the loop.
+Note that the list of users is managed by an Active Directory group.
+Each time a user is added into the AD group that gives access to DatAnywhere, the script detects it (script runs twice a day) and perform the configuration.
+
+If a user is removed from the AD group, the delet loop is triggered:
+`$HomeFolder = "\\domain\dfs\HOMEDIRS\$TargetUserAccount"`
+Remove Workspace.
+`Get-DatAnywherePrivateWorkspace -TargetUserAccount "DOOMAIN\$TargetUserAccount" -Name "Espace Personnel" | Remove-DatAnywherePrivateWorkspace`
+Get Root Sync of user
+`$Root = Get-DatAnywhereRoot -UNCpath "$HomeFolder\Sync" -ErrorAction SilentlyContinue`
+Remove collaboration parameters (same command as for configuration, but no configuration switches)
+~~~~
+Set-DatAnywhereSharedFolder -Root $Root -FolderPath "Envoi"
+Set-DatAnywhereSharedFolder -Root $Root -FolderPath "Reception"
+~~~~
+Remove Root
+`Remove-DatAnywhereRoot -Root $Root`
+Remove user from DN
+`Get-DatAnywhereUser -UserAccount $TargetUserAccount | Remove-DatAnywhereUser`
+
+This last command is dangerous if you have users with the same First Name and Last Name, because the DN API used return only DN userID and DN userName. There is no link with the AD account or AD SID. So when you search a user by its account, the string "First Name, Last Name" is gathered from the AD and then the user is searched n DN with this value.
+**EDIT : I just saw that using another API wolud have better results. Created a ticket.**
+
+
+I hope this example will help you to create your own workflows.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David Vekemans</dc:creator><pubDate>Sat, 23 Jan 2016 10:54:16 -0000</pubDate><guid>https://sourceforge.net145d4f0ab46290525a08189a202f7f7dd6122125</guid></item><item><title>Example Workflow modified by David Vekemans</title><link>https://sourceforge.net/p/varonis-datanywhere-powershell/wiki/Example%2520Workflow/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -1,9 +1,50 @@
-The goal of this page is to describe an example of workflow used in my company with this posershell module.
+The goal of this page is to describe an example of workflow used in my company with this posershell module (in version 2).

 The requirements where the following
 1. We need to configure completly DatAnywhere for users, because they probably don't have the required knowledge to do it by themselves.
 2. Users have a personnal home directory shared on the DFS as \\domain\dfs\users\samaccountname
 3. Users have access to their home dir in view only mode (no offline synchronisation) in DatAnywhere 
 4. A subfolder "sync" of the home directory can be fully synchronised and available read/write in DatAnywhere
-5. A subfolder "send" of the folder "sync" allow users to send files using DatAnywhere
-6. A subfolder "receive" of the folder "sync" allow users to receive files from other people using DatAnywhere
+5. A subfolder "Envoi" (=send) of the folder "sync" allow users to send files using DatAnywhere
+6. A subfolder "Reception" (=receive) of the folder "sync" allow users to receive files from other people using DatAnywhere
+
+
+Unfortunetaly, the "view only" mode is only configurable by root in DN, and not by folder. And you cannot add tow root with the same path. So we had to trick DN by creating two entries in our DFS that points to the same folder:
+\\domain\dfs\users
+\\domain\dfs\homedir
+
+So first step was to create a root in view only mode. We created it manualy, because we need it only once. For references the command look like:
+`Add-DatAnywhereRoot -RootName HomeDir -UNCPath \\domain\dfs\users -IncludeNested -PreviewOnly`
+
+Once this first root is created, we can run ou workflow:
+
+First connect to DN.
+`Connect-DatAnywhereServer -DatAnywhereServer Server1 -Username my_user -Password my_pass`
+
+Get the Root Home.
+
+~~~~
+$RootHome = Get-DatAnywhereRoot -UNCPath "\\domain\dfs\users"
+if ($RootHome -eq $null) { Throw "Root home does not exists !" }
+~~~~
+
+Then start a loop for each users to configure. This loop does the following:
+
+~~~~
+$TargetUserAccount = sam_account_name_of_user
+$HomeFolder = "\\domain\dfs\HOMEDIRS\$TargetUserAccount"
+~~~~
+Create the folders in the HomeDir of the user.
+
+~~~~
+$null = New-Item -ItemType directory -Path "$HomeFolder\Sync"
+$null = New-Item -ItemType directory -Path "$HomeFolder\Sync\Envoi"
+$null = New-Item -ItemType directory -Path "$HomeFolder\Sync\Reception"
+~~~~
+To avoid tha the users delete these folders in its HomeDir, we added a deny delete in NTFS for these 3 folders.
+
+~~~~
+Add-NTFSAccess -Account DOMAIN\$TargetUserAccount -AccessRights Delete -AccessType Deny -AppliesTo ThisFolderOnly -Path "$HomeFolder\Sync"
+Add-NTFSAccess -Account DOMAIN\$TargetUserAccount -AccessRights Delete -AccessType Deny -AppliesTo ThisFolderOnly -Path "$HomeFolder\Sync\Envoi"
+Add-NTFSAccess -Account DOMAIN\$TargetUserAccount -AccessRights Delete -AccessType Deny -AppliesTo ThisFolderOnly -Path "$HomeFolder\Sync\Reception"
+~~~~
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David Vekemans</dc:creator><pubDate>Sat, 23 Jan 2016 10:24:34 -0000</pubDate><guid>https://sourceforge.netd10b0c90d93e9d51476d8c3c193903e6f9f3505b</guid></item><item><title>Example Workflow modified by David Vekemans</title><link>https://sourceforge.net/p/varonis-datanywhere-powershell/wiki/Example%2520Workflow/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -2,5 +2,8 @@

 The requirements where the following
 1. We need to configure completly DatAnywhere for users, because they probably don't have the required knowledge to do it by themselves.
-2. Users have a perfonnal home directory shared on the DFS as \\domain\dfs\users\**samaccountname
-3. ttt
+2. Users have a personnal home directory shared on the DFS as \\domain\dfs\users\samaccountname
+3. Users have access to their home dir in view only mode (no offline synchronisation) in DatAnywhere 
+4. A subfolder "sync" of the home directory can be fully synchronised and available read/write in DatAnywhere
+5. A subfolder "send" of the folder "sync" allow users to send files using DatAnywhere
+6. A subfolder "receive" of the folder "sync" allow users to receive files from other people using DatAnywhere
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David Vekemans</dc:creator><pubDate>Sat, 23 Jan 2016 09:05:28 -0000</pubDate><guid>https://sourceforge.net9e224c62bd63524be6fa7a5288a3399aa0ff0796</guid></item><item><title>Example Workflow modified by David Vekemans</title><link>https://sourceforge.net/p/varonis-datanywhere-powershell/wiki/Example%2520Workflow/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -3,4 +3,4 @@
 The requirements where the following
 1. We need to configure completly DatAnywhere for users, because they probably don't have the required knowledge to do it by themselves.
 2. Users have a perfonnal home directory shared on the DFS as \\domain\dfs\users\**samaccountname
-3. 
+3. ttt
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David Vekemans</dc:creator><pubDate>Sat, 23 Jan 2016 09:01:59 -0000</pubDate><guid>https://sourceforge.netb2ea39873625a22002505185ac5eb40130305319</guid></item><item><title>Example Workflow modified by David Vekemans</title><link>https://sourceforge.net/p/varonis-datanywhere-powershell/wiki/Example%2520Workflow/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -2,5 +2,5 @@

 The requirements where the following
 1. We need to configure completly DatAnywhere for users, because they probably don't have the required knowledge to do it by themselves.
-2. Users have a perfonnal home directory shared on the DFS as \\domain\dfs\users\*samaccountname* 
+2. Users have a perfonnal home directory shared on the DFS as \\domain\dfs\users\**samaccountname
 3. 
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David Vekemans</dc:creator><pubDate>Sat, 23 Jan 2016 09:01:30 -0000</pubDate><guid>https://sourceforge.netb6ab54dd45c28f236752d0bf24f179bf787ddcda</guid></item><item><title>Example Workflow modified by David Vekemans</title><link>https://sourceforge.net/p/varonis-datanywhere-powershell/wiki/Example%2520Workflow/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The goal of this page is to describe an example of workflow used in my company with this posershell module.&lt;/p&gt;
&lt;p&gt;The requirements where the following&lt;br/&gt;
1. We need to configure completly DatAnywhere for users, because they probably don't have the required knowledge to do it by themselves.&lt;br/&gt;
2. Users have a perfonnal home directory shared on the DFS as \domain\dfs\users*samaccountname* &lt;br/&gt;
3. &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David Vekemans</dc:creator><pubDate>Sat, 23 Jan 2016 09:00:53 -0000</pubDate><guid>https://sourceforge.net451069c725ef239f331ffddb666675c577556fd1</guid></item></channel></rss>