Search found 60 matches

by ejhansen71
Fri Mar 04, 2016 10:21 am
Forum: Questions (API)
Topic: RENAMELABEL and Vault 9.1 API Question/Request
Replies: 4
Views: 23190

RENAMELABEL and Vault 9.1 API Question/Request

We use RENAMELABEL as part of our promotion process. Ex. Need to promote 5 files from DEV to PRODUCTION file: a ---> Label: promote_a file: b ---> Label: promote_a file: c ---> Label: promote_a file: d ---> Label: promote_a file: e ---> Label: promote_a We use GETLABELS to have vault write those up...
by ejhansen71
Fri Mar 04, 2016 8:48 am
Forum: Support (Vault)
Topic: Vault 9.1: Find in Files Feature Not Working
Replies: 3
Views: 6269

Vault 9.1: Find in Files Feature Not Working

I am trying to turn on the "Find in Files" and we are running into issues and hope you can help. Below is the conversation between Steve Young and me. (Most recent first) ------------------------------------------------- 4. Steve: I checked the log again, same errors. I checked the web.con...
by ejhansen71
Tue Jun 09, 2015 3:13 pm
Forum: Support (Vault)
Topic: GETLABEL Does not create empty directories
Replies: 1
Views: 4500

GETLABEL Does not create empty directories

Hi Beth - Using Vault Standard, we right click on a folder and set a label for it (which then recursively labels everything it contains.) On our promotion process, we log into the server the data is to go to and run this plink command plink -P %port% %username%@%vault_app% "GETLABEL -repository...
by ejhansen71
Thu May 21, 2015 2:20 pm
Forum: Support (Vault)
Topic: How to roll back to a label/date?
Replies: 50
Views: 87360

Re: How to roll back to a label/date?

That would work on any existing code, but if new code was pushed via label B, repromoting label A won't remove that new program.

You can close the ticket - it's not a big deal - I just thought I'd ask.
by ejhansen71
Thu May 21, 2015 1:37 pm
Forum: Support (Vault)
Topic: How to roll back to a label/date?
Replies: 50
Views: 87360

Re: How to roll back to a label/date?

The ability to undo the GET on the QA server based on what the label contains.

e.g. we move label A with 10 programs to our QA server Then for whatever reason, they want to undo that.

I can custom code a solution, but was checking if there was something already baked into Vault.
by ejhansen71
Thu May 21, 2015 11:10 am
Forum: Support (Vault)
Topic: How to roll back to a label/date?
Replies: 50
Views: 87360

Re: How to roll back to a label/date?

Hi! Bringing up an older topic, but I have the same question. We are on version 8.0.1 Standard. Is it possible to rollback a Label? We use your API to create a Promotion tool that moves Labels (and their programs associated with the label) to our QA server. Is there a simple way to rollback? I saw t...
by ejhansen71
Wed Apr 29, 2015 1:55 pm
Forum: Questions (API)
Topic: Get Authorized Repositories and Folders for a given User
Replies: 5
Views: 25798

Re: Get Authorized Repositories and Folders for a given User

I am doing this in a Windows form via C# and VisualStudio Two Questions. Question 1 : Return a list Top Level Folders from a given repository. I started with getting the repository the User has permission to access. I was able to do that with the following code: VaultRepositoryInfo[] vri = ServerOpe...
by ejhansen71
Tue Apr 28, 2015 10:43 am
Forum: Questions (API)
Topic: Get Authorized Repositories and Folders for a given User
Replies: 5
Views: 25798

Re: Get Authorized Repositories and Folders for a given User

A SQL query is better than nothing. In the standard Vault GUI, When a user has access to only 1 repository (we have 6 totals) and he logs in, only the repository he has access to appears in the Repository selection box. This is what we want on our GUI as well. In addition, once the repository is ope...
by ejhansen71
Mon Apr 27, 2015 12:42 pm
Forum: Questions (API)
Topic: Get Authorized Repositories and Folders for a given User
Replies: 5
Views: 25798

Get Authorized Repositories and Folders for a given User

Hi Beth - I'm back again for another difficult question. I'm logged in as administrator on this GUI tool I built using Visual Studio and coding in C#. I want to find out what Repositories and Folders a user is authorized to use. So I need to pass the server a username "ehansen" and have re...
by ejhansen71
Tue Apr 14, 2015 4:48 pm
Forum: Support (Vault)
Topic: Vault Login C# with Active Directory
Replies: 4
Views: 7151

Re: Vault Login C# with Active Directory

Beth - I don't want to use CLC - I am using C# and use a login method. I use the following constants: c_url: our vault server c_username: vlt c_password: vltpassword public static void Login() { ServerOperations.client.LoginOptions.URL = c_url; ServerOperations.client.LoginOptions.User = c_username;...
by ejhansen71
Mon Apr 13, 2015 10:47 am
Forum: Support (Vault)
Topic: Vault Login C# with Active Directory
Replies: 4
Views: 7151

Vault Login C# with Active Directory

I can create a login page using windows forms, but I need to be able to query our AD (active directory) for authentication. I notice that on your Admin Web CLient, when adding a new user, you assign a Full NAme, Login id and email and there is an option to either use AD or not. We use it which makes...
by ejhansen71
Mon Apr 06, 2015 9:19 am
Forum: Support (Vault)
Topic: Emloyee Turnover and Vault
Replies: 1
Views: 4042

Emloyee Turnover and Vault

We have had a few employees leave recently while still having things checked out. Normally, we would reset the password and go in and fix it, however Active Directory is controlling the logins. Is there a way to force a user to release their hold on files or force a undo check in?

Thanks -

Eric
by ejhansen71
Sat Apr 04, 2015 12:40 pm
Forum: Support (Vault)
Topic: Force Default Cache Settings on Remote Desktop Install
Replies: 1
Views: 4207

Force Default Cache Settings on Remote Desktop Install

Hi Beth - We have many users and are using a remote desktop service to roll it out to all users. The problem we are having is that, by default, the cache and backup files are stored on the local drive (the RDS) which has limited space available. We can ask all the users to change the location of the...
by ejhansen71
Wed Apr 01, 2015 10:06 am
Forum: Support (Vault)
Topic: Search by Label
Replies: 3
Views: 6004

Re: Search by Label

So - its been 3 years since last commented on. Is it possible to use the Vault GUI to search for a label and have the files under the label returned? I am using the latest client and server.
by ejhansen71
Mon Mar 23, 2015 12:17 pm
Forum: Support (Vault)
Topic: C# API: Return List<string> of files from a selected Label
Replies: 14
Views: 13564

Re: C# API: Return List<string> of files from a selected Lab

Beth -

The code you provided works perfectly. Thank you so much!

Eric