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
| param( | |
| [string]$Url, | |
| [string]$UserName, | |
| [string]$Password, | |
| [string]$Domain, | |
| [string]$Code | |
| ) | |
| [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Client") |
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
| @echo off | |
| echo Uninstalling KB3075249 (telemetry for Win7/8.1) | |
| start /w wusa.exe /uninstall /kb:3075249 /quiet /norestart | |
| echo Uninstalling KB3080149 (telemetry for Win7/8.1) | |
| start /w wusa.exe /uninstall /kb:3080149 /quiet /norestart | |
| echo Uninstalling KB3021917 (telemetry for Win7) | |
| start /w wusa.exe /uninstall /kb:3021917 /quiet /norestart | |
| echo Uninstalling KB3022345 (telemetry) | |
| start /w wusa.exe /uninstall /kb:3022345 /quiet /norestart | |
| echo Uninstalling KB3068708 (telemetry) |
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
| <# | |
| .Synopsis | |
| Facilitates the loading of specific properties of a Microsoft.SharePoint.Client.ClientObject object or Microsoft.SharePoint.Client.ClientObjectCollection object. | |
| .DESCRIPTION | |
| Replicates what you would do with a lambda expression in C#. | |
| For example, "ctx.Load(list, l => list.Title, l => list.Id)" becomes | |
| "Load-CSOMProperties -object $list -propertyNames @('Title', 'Id')". | |
| .EXAMPLE | |
| Load-CSOMProperties -parentObject $web -collectionObject $web.Fields -propertyNames @("InternalName", "Id") -parentPropertyName "Fields" -executeQuery | |
| $web.Fields | select InternalName, Id |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <!-- | |
| Set the IE rendering engine to EDGE and loads a given aspx file in an iframe, | |
| thus forcing it to be rendered using the browser's latest rendering engine. | |
| Usage: ie.aspx?file.aspx | |
| The default page to be loaded, when this file is accessed, can be set below (url variable). |
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
| <webParts> | |
| <webPart xmlns="http://schemas.microsoft.com/WebPart/v3"> | |
| <metaData> | |
| <type name="Microsoft.SharePoint.WebPartPages.XsltListViewWebPart, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> | |
| <importErrorMessage>Cannot import this Web Part.</importErrorMessage> | |
| </metaData> | |
| <data> | |
| <properties> | |
| <property name="ListName" type="string">{$ListId:Documents;}</property> | |
| <property name="ListId" type="System.Guid, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">$ListId:Documents;</property> |
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
| <?php | |
| $sites = "http://www.broadcastsolutions.com.au/ | |
| http://www.kvm.com.au/ | |
| http://www.ambertech.com.au/"; | |
| $sites = preg_split('/\r\n|\r|\n/', $sites); | |
| echo " |
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
| 0-mail.com | |
| 0815.ru | |
| 0clickemail.com | |
| 0wnd.net | |
| 0wnd.org | |
| 10minutemail.com | |
| 20minutemail.com | |
| 2prong.com | |
| 30minutemail.com | |
| 3d-painting.com |
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
| <?php | |
| /* Caveat: I'm not a PHP programmer, so this may or may | |
| * not be the most idiomatic code... | |
| * | |
| * FPDF is a free PHP library for creating PDFs: | |
| * http://www.fpdf.org/ | |
| */ | |
| require("fpdf.php"); | |
| class PDF extends FPDF { |
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
| // jQuery Headers support for $.ajax | |
| $.ajax({ | |
| beforeSend: function(xhrObj){ | |
| xhrObj.setRequestHeader("Content-Type","application/json"); | |
| xhrObj.setRequestHeader("Accept","application/json"); | |
| } | |
| type: "POST", | |
| url: "/article", | |
| processData: false, |
NewerOlder