Author: Arianne
-
Here’s another note to self… I’ve been looking for a way to password protect a csv file but found it’s not possible natively so one way to encrypt it is to zip it first and password protect the zip file. Now I have multiple files I want to to zip using 7-Zip compression and again… Continue reading
-
Basically I followed this step-by-step from Microsoft, but for my own sake I’m writing my own so it’s easier to find. Setup IIS from Windows Control Panel • Open Control Panel >> Programs >> Turn Windows features on or off • Select Internet Information Services >> Expand and check CGI under World Wide Web Services — Application Development Features • Test by opening http://localhost/ on your… Continue reading
-
Say you want to use a variable as delay duration instead of hardcoding the time span (ie. 00:00:05), how do you convert a string variable into a proper duration variable? Duration field accepts values with data type TimeSpan. To convert a String to TimeSpan, use… …where delay is a string variable containing the delay duration in… Continue reading
-
I was looking for ways to split a string into characters and found this .net string method that works perfectly. Say you want to split the word elephant into individual characters and display it, just use the method ToCharArray() and it will be converted the way you want it! Take note to change the TypeArgument… Continue reading
-
On your Desktop, Start >> Settings >> Apps >> Apps & Features >> Optional features >> Add feature Look for RSAT: Active Directory Domain Services and Lightweight Directory Services Tool If it tells you of any dependency, install that first. Here it shows I need to install RSAT: Server Manager first so let’s do that After installation you… Continue reading
-
This is the easiest way for me. Since Microsoft Edge is Chromium-based, it supports the same extension used by your Google Chrome browser. So the UiPath Web Automation Chrome extension should work:https://chrome.google.com/webstore/detail/uipath-web-automation/dkgencfabioofgdmhhjljpkbbchbikbh What you should do is open the extension URL and install it straight on your Edge browser. With this you don’t need to… Continue reading