Skip to content

Instantly share code, notes, and snippets.

View Zageron's full-sized avatar
🤔
rust rust revolution

Zageron Zageron

🤔
rust rust revolution
View GitHub Profile
@Zageron
Zageron / TestingCredentialStore.cpp
Created January 13, 2020 21:28
Quick test of how to use the credential store. Really not a fan of how windows does their internals....
// TestingCredentialStore.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
#include <windows.h>
#include <wincred.h>
#include <tchar.h>
#include <iostream>
#include <clocale>
@Zageron
Zageron / Install-VSCode.ps1
Last active January 22, 2018 20:52 — forked from EmmanuelTsouris/Install-VSCode.ps1
Download and Silently Install Visual Studio Code (VSCode)
#Install-VSCode
# Download URL, you may need to update this if it changes
$downloadUrl = "https://go.microsoft.com/fwlink/?Linkid=852157"
# What to name the file and where to put it
$installerFile = "vscode-install.exe"
$installerPath = (Join-Path $env:TEMP $installerFile)
# Install with the context menu and add to path options (and don't run code after install):