Community
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Distributed Search Check-Out By User

Distributed Search Check-Out By User

Hi, I have an idea about distributed surveys.

I would like to be able to create searches that access, for example, the user's name.

Then I could create a search "In Check-Out By Me" that automatically pulls up the name of the respective user.

Best regards,

2 Comments
francis.korde
Advocate

Hi Gustavo, 

I had the same idea and solved it by copying a "Check out by me" search on all users machine then use this code to change the name : 

$PathSearch = $Env:APPDATA + "\Autodesk\VaultCommon\Servers\Services_Security_01_10_2023\$($ServerToConnect.ServerName)\Vaults\$($ServerToConnect.Database)\Searches\Check out by me"
if (Test-Path -Path $PathSearch) {
   [xml]$xmlDoc = Get-Content -Path $PathSearch
   $SC = $xmlDoc.SearchParameters.SearchConditions.SearchCondition
   $SC.SetAttribute("Value", $env:USERNAME)
   $xmlDoc.Save($PathSearch)
}
ihayesjr
Community Manager
Status changed to: Implemented

Implemented in 2025.1 Update

Can't find what you're looking for? Ask the community or share your knowledge.

Submit Idea  

Autodesk Design & Make Report