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
| if (Test-Path -Path "$env:TEMP\QuickAssist") { Remove-Item -Path "$env:TEMP\QuickAssist" -Recurse -Force } | |
| New-Item -Path "$env:TEMP\QuickAssist" -ItemType Directory -Force | |
| $splat = @{ | |
| Uri = 'http://tlu.dl.delivery.mp.microsoft.com/filestreamingservice/files/8d0b9e7a-4003-4ac6-be5f-e404017dcfaf?P1=1725680910&P2=404&P3=2&P4=FnHO4V8KKLtnpEBRswocNrNVRwp8mYxhexd5ChhGdnR0Y2P7285LX4gI%2fOBSUd891u02SvKsx%2bMIwRoHViqCdw%3d%3d' | |
| OutFile = "$env:TEMP\QuickAssist\QuickAssist.AppxBundle" | |
| } | |
| Invoke-WebRequest @splat | |
| $splat = @{ |
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
| Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
| Enable-RemoteDesktop | |
| cinst fiddler4 | |
| cinst sublimetext3 | |
| cinst Microsoft-Hyper-V-All -source windowsFeatures | |
| cinst IIS-WebServerRole -source windowsfeatures | |
| cinst choco install insomnia-rest-api-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
| foreach (var lp in c.LessonPlans) | |
| { | |
| var copy = new LessonPlan(lp.Name, lp.Organization) | |
| { | |
| Association = lp.Association, | |
| Category = lp.Category, | |
| Class = null, | |
| Course = c2, | |
| Description = lp.Description, | |
| EstimatedDate = lp.EstimatedDate, |
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 IList<IndustryCode> GetAll(bool excludeCats = true) | |
| { | |
| var qo = M3QueryOver.Of<IndustryCode>(); | |
| qo.Where(c => c.DD == null); | |
| if (excludeCats) | |
| { | |
| qo.Where(c => c.ParentIndustryCode != null); | |
| } |
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
| Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
| Enable-RemoteDesktop | |
| choco install powershell | |
| cinst dotnet3.5 | |
| cinst dotnet4.0 | |
| cinst dotnet4.5 | |
| # Dev |