This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class ExchangePowerShell | |
| { | |
| public static PSCredential GetCredentials(string userName, string password) | |
| { | |
| var securePassword = new SecureString(); | |
| Array.ForEach(password.ToCharArray(), securePassword.AppendChar); | |
| var cred = new PSCredential(userName, securePassword); | |
| return cred; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <configuration> | |
| <startup useLegacyV2RuntimeActivationPolicy="true">"<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using CurrencyServiceExample.DAX.Services; | |
| namespace CurrencyServiceExample | |
| { | |
| class Program |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| update userinfo | |
| set | |
| networkdomain = 'YourDomain', | |
| networkalias = 'YourAlias', | |
| SID = 'YourSID' | |
| where ID = 'Admin' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using System.Diagnostics; | |
| using System.DirectoryServices; | |
| namespace GetUserSID | |
| { | |
| /// <summary> | |
| /// This class must work on a username and domainname, access active directory services |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Net; | |
| using System.ServiceModel.Description; | |
| using System.Text; | |
| using Tutorial.AIF.CreateItem.EcoResProductServices; | |
| using Tutorial.AIF.CreateItem.InventItemServices; | |
| namespace Tutorial.AIF.CreateItem |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1) Put this code in a file called EnableRemoteErrors.rss | |
| Public Sub Main() | |
| Dim P As New [Property]() | |
| P.Name = "EnableRemoteErrors" | |
| P.Value = True | |
| Dim Properties(0) As [Property] | |
| Properties(0) = P | |
| Try | |
| rs.SetSystemProperties(Properties) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (new-object Net.WebClient).DownloadString("http://psget.net/GetPsGet.ps1") | iex | |
| Install-Module Posh-Git –force |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Go to Tools -> External Tools -> Add | |
| Command: Your xunit.console.exe file path | |
| Arguments: $(BinDir)$(TargetName)$(TargetExt) | |
| Initial Directory: $(BinDir) | |
| Change xunit.console.config so that you have requiredRuntime if you want to run .NET 4.0 | |
| <?xml version="1.0" encoding="utf-8" ?> | |
| <configuration> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| do | |
| { | |
| if (webRequest == null && string.IsNullOrEmpty(nextPageUrl)) | |
| webRequest = HttpWebRequest.Create(String.Format("https://api.instagram.com/v1/tags/{0}/media/recent?client_id={1}", tagName, clientId)); | |
| else | |
| webRequest = HttpWebRequest.Create(nextPageUrl); | |
| var responseStream = webRequest.GetResponse().GetResponseStream(); | |
| Encoding encode = System.Text.Encoding.Default; |