This file contains 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: For Win 11, I recommend using this tool in place of this script: | |
### https://christitus.com/windows-tool/ | |
### https://github.com/ChrisTitusTech/winutil | |
### https://www.youtube.com/watch?v=6UQZ5oQg8XA | |
### iwr -useb https://christitus.com/win | iex | |
### | |
### |
This file contains 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
# authored @alirobe for @sopewebtech 2022-06-17 | |
# pnp-list-copy.ps1 : https://gist.githubusercontent.com/alirobe/4187b0f073dc2eba5207f312a01ddab6/ | |
# this copies list values from source to target | |
# before using this script, create a new list 'from existing list' in the same site | |
# then, plug values in below and run. should work for most field types. any issues let me know. | |
# todo: add batching, add field types | |
# licensed under GPL V2 | |
$Site = "https://notproduction.sharepoint.com/sites/not-sproket-4/" |
This file contains 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
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Search\Gathering Manager\Plugins] | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Search\Gathering Manager\Plugins\.pdf] | |
"ProgId"="AcroIFilter.AcroIFilter" | |
"CLSID"="{E8978DA6-047F-4E3D-9C78-CDBE46041603}" | |
"DefaultDisabled"=dword:00000000 | |
This file contains 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 Newtonsoft.Json; | |
using System; | |
using System.Collections.Generic; | |
using System.Collections.Specialized; | |
using System.Dynamic; | |
using System.Net; | |
using System.Text.RegularExpressions; | |
using Umbraco.Core.Logging; | |
using Umbraco.Forms.Core; | |
using Umbraco.Forms.Core.Attributes; |
This file contains 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
########## | |
# Tweaked Win10 Initial Setup Script | |
# Primary Author: Disassembler <disassembler@dasm.cz> | |
# Modified by: alirobe <alirobe@alirobe.com> based on my personal preferences. | |
# Version: 2.6.1, 2017-08-02 | |
# Primary Author Source: https://github.com/Disassembler0/Win10-Initial-Setup-Script | |
# Tweaked Source: https://gist.github.com/alirobe/7f3b34ad89a159e6daa1/ | |
# Tweak difference: | |
# | |
# @alirobe's version is a subset focused on safely disabling telemetry, 'smart' features, and 3rd party bloat ... |
This file contains 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 Microsoft.AspNetCore.Mvc; | |
using Umbraco.Cms.Core.Services; | |
using MimeKit; | |
using Umbraco.Cms.Core.Models; | |
using Umbraco.Cms.Core.IO; | |
namespace UmbracoProject.Controllers | |
{ | |
public class SecureMediaController : Controller | |
{ |
This file contains 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
$popplerPath = ".\poppler\bin\pdftotext.exe" | |
$maxDocs = 1000 | |
$inputPath = ".\source" | |
$outputPath = ".\dest" | |
function Convert-FilesToMarkdown { | |
param( | |
[string]$inputFolderPath, | |
[string]$outputFolderPath | |
) |
This file contains 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
//<script src="/hosted/Style%20Library/jquery-1.7.1.min.js" type="text/javascript"></script><script type="text/javascript"> | |
//jQuery.noConflict(); | |
jQuery(function(){ | |
var cfg= { | |
'CRM':['CRM Access'], | |
'SharePoint':['SharePoint Access'], | |
'GP':['GP Security Role','GP Access Level','GP Company Name'], | |
'Replace Existing User':['Existing user email address'] | |
} | |
for(var i in cfg) { |
NewerOlder