- RunDll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,0
- RunDll32.exe msrating.dll,RatingSetupUI
| # https://github.com/huangzx/swin/tree/807df36dd4ef53fdf797a19894f7e5d68891e429/src/winui | |
| # Copyright (c) 2007, 2008 Agostino Russo | |
| # | |
| # Written by Agostino Russo <agostino.russo@gmail.com> | |
| # Mostly copied from win32con.py | |
| # | |
| # winui is free software; you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as | |
| # published by the Free Software Foundation; either version 2 of | |
| # the License, or (at your option) any later version. |
| @echo off | |
| setlocal enabledelayedexpansion | |
| set SCRIPT_ROOT=%~dp0 | |
| exit /b |
| # Credits to https://stackoverflow.com/questions/3487265/powershell-script-to-return-versions-of-net-framework-on-a-machine | |
| # Get the text from github | |
| $url = "https://raw.githubusercontent.com/dotnet/docs/master/docs/framework/migration-guide/how-to-determine-which-versions-are-installed.md" | |
| $md = Invoke-WebRequest $url -UseBasicParsing | |
| # Replace the weird text in the tables, and the padding | |
| # Then trim the | off the front and end of lines | |
| $map = $md -split "`n" -replace " installed [^|]+" -replace "\s+\|" -replace "\|$" | |
| $ProcessParameters = @{ | |
| FilePath = "C:\Users\xxx\AppData\Local\UiPath\app-18.1.2\UiRobot.exe" | |
| ArgumentList = @( | |
| '/file:"C:\Users\xxx\Documents\UiPath\test\Main.xaml"' | |
| "/input:`"{'arg1':'$Var'}`"" | |
| ) | |
| NoNewWindow = $true | |
| Wait = $true | |
| } | |
| Start-Process @ProcessParameters |
Given a subscribed calendar with a url like
https://example.com/example.ics
To force Google Calendar to refresh and reload the contents right now, unsubscribe from the calendar and subscribe to a new calendar with a URL like
https://example.com/example.ics#1
Adding the anchor tag will force Google Calendar to think of it as a new calendar
| !!GET WEBSITE FROM ANNIKA DO COURSE | |
| ##### PREPARE FOR SALARY CONVERSATION ##### | |
| 1) Understand the market and your value | |
| # do your homework # | |
| * assess own value (salary.com, payscale) - | |
| * determine market salary range (glassdoor, indeed, linkedin) | |
| 2) Know what is important to you |
| function cibc2csv() { | |
| var table = document.querySelector('table.smart-account') | |
| var csv = '' | |
| var head = [] | |
| var row = [] | |
| // read header cells | |
| table.querySelectorAll('thead th').forEach(th => { | |
| head.push(`${trim(th.textContent)}`) | |
| }) |
Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
| :: Windows 10 Hardening Script | |
| :: This is based mostly on my own personal research and testing. My objective is to secure/harden Windows 10 as much as possible while not impacting usability at all. (Think being able to run on this computer's of family members so secure them but not increase the chances of them having to call you to troubleshoot something related to it later on). References for virtually all settings can be found at the bottom. Just before the references section, you will always find several security settings commented out as they could lead to compatibility issues in common consumer setups but they're worth considering. | |
| :: Obligatory 'views are my own'. :) | |
| :: Thank you @jaredhaight for the Win Firewall config recommendations! | |
| :: Thank you @ricardojba for the DLL Safe Order Search reg key! | |
| :: Thank you @jessicaknotts for the help on testing Exploit Guard configs and checking privacy settings! | |
| :: Best script I've found for Debloating Windows 10: https://github.com/Sycnex/Windows10Debloater | |
| : |