ShareFile-PowerShell
ShareFile-PowerShell copied to clipboard
Is it possible to use this Powershell snap in to upload files to a remote link. I have a vendor that accepts files at: https://zzzcorp.sharefile.com/remoteupload/ae4b98b2-9c86-4375-b661-8d4feca75c08 for example where you'd drag...
I tried two options for removing a users access to a folder: ``` $ACLuser = new-object ShareFile.Api.Models.AccessControl $ACLuser.Principal = $USER $ACLuser.CanUpload = $false $ACLuser.CanDownload = $false $ACLuser.CanDelete = $false $ACLuser.CanManagePermissions...
The download behavior (and upload behavior) contains several bugs and deviations from sfcli.exe. Sync-SfItem does NOT work like sfcli.exe, the documentation claiming so is all wrong. The following bugs were...
https://www.citrix.com/blogs/tag/powershell-sdk/ This link results in a "page not found". The syntax of /blogs/tag/tagname seems to be correct, but no posts are returned.
We have created a scheduled task in our Sharefile server in order to get the number of files of each user. This task executes a Powershell script that use Sharefile...
Or at least I think the file is getting corrupted. Not often but say once every couple of thousand downloads. What I'm seeing is that once I download a file...
I am writing a piece of code to get the list of devices that our employees have connected. We have seen that for some Device Id, we get an error...
We want to check from what devices are connected our users. The problem when querying User->Devices we get all the devices that has had the user from the beginning, although...
Can proxy support be added to the snap-in? My network has recently implemented proxy for all outbound connections, which is less than ideal for scripting scenarios, but it's where I...