:::Update::: So I've figured it out...as I suspected it isn't intuitive IMO. But here it goes: Start -> Control Panel -> User Accounts -> Manage another account -> Select Account -> Change Password The "Manage another account" is what got me last time! Enjoy! ------------------------------------------------------------------ So I just installed Windows Server 2012. I was struggling with the simplest concept, how to change my current password on my user account. Seems that the old CTRL+ALT+DELETE -> Change Password is no longer available? To get around the issue you can use one of the following methods: Method 1: Click Start ->Administrative Tools -> Computer Management -> Expand Local Users and Computers -> Expand Users -> Right Click <username> -> Click "Set Password". Method 2: Launch PowerShell -> type in LUSRMGR.MSC -> Expand Users -> Right Click <username> -> Clic
So your looking to use Flow and rename some files in SharePoint. Too easy, but wait - there are no actions available to allow a rename? So what's next!? Well here we go, REST API to the rescue! But not so fast, there are some catches. You create a "Sent an HTTP request to SharePoint" action and fill in the properties as follows Site Address = http://yoursite.sharepoint.com/yoursubsite Uri = _api/web/lists/getbytitle('<LIST NAME>')/getItemByStringId('<List Item ID>') Headers = { "X-HTTP-Method" : "PATCH" , "If-Match" : "*" , "Content-Type" : "application/json;odata=verbose" , "Accept" : "application/json;odata=verbose" } Body = {'__metadata': {'type': 'SP.Data.Project_x0020_DocumentsItem'}, 'Title':'test', 'FileLeafRef':'test.bmp'} The above can be created in the activit
Comments
Post a Comment