Available | Release | Architecture | Version | URI |
---|---|---|---|---|
TRUE | 2022 | x64 | 14.32.31332.0 | https://aka.ms/vs/17/release/VC_redist.x64.exe |
TRUE | 2022 | x86 | 14.32.31332.0 | https://aka.ms/vs/17/release/VC_redist.x86.exe |
TRUE | 2019 | x64 | 14.29.30139.0 | https://aka.ms/vs/16/release/VC_redist.x64.exe |
TRUE | 2019 | x86 | 14.29.30139.0 | https://aka.ms/vs/16/release/VC_redist.x86.exe |
TRUE | 2017 | x64 | 14.16.27033.0 | https://aka.ms/vs/15/release/vc_redist.x64.exe |
TRUE | 2017 | x86 | 14.16.27033.0 | https://aka.ms/vs/15/release/vc_redist.x86.exe |
TRUE | 2015 | x64 | 14.0.24215.1 | https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe |
TRUE | 2015 | x86 | 14.0.24215.1 | https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe |
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
using System; | |
using System.Collections.Generic; | |
namespace Elapsed | |
{ | |
public class ElapsedTimeService | |
{ | |
public class ElapsedTime | |
{ | |
public DateTime? Last { get; set; } |
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | |
<assemblyIdentity | |
version="1.0.0.0" | |
processorArchitecture="X86" | |
name="main" | |
type="win32" | |
/> | |
<description>Elevated Privelege UAC Demo</description> | |
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> |
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
using System; | |
using System.IO; | |
namespace Logger | |
{ | |
public class TextLoggerService | |
{ | |
private readonly string filePath; | |
public TextLoggerService() |
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
using System; | |
using System.Collections.Generic; | |
using System.Management; | |
/* | |
https://learn.microsoft.com/windows/win32/wmisdk/wmi-glossary/ | |
https://learn.microsoft.com/windows/win32/wmisdk/wmi-reference/ | |
*/ | |
namespace WMI | |
{ | |
public class WmiQueryService |
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
using System; | |
using System.IO; | |
public class CustomTextLogger<T> | |
{ | |
private readonly string filePath; | |
public CustomTextLogger() | |
{ | |
string desktopPath = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory); |
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
"use strict"; | |
var fs = require('fs'); | |
var http = require('http'); | |
var https = require('https'); | |
var express = require('express'); | |
var app = express(); | |
app.get('/', function (req, res) { | |
void req; | |
res.send("Date: ".concat(new Date())); | |
}); |
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
/* | |
Copyright © 2013 Mario (BU) Flores Rey CC BY-NC-SA 4.0 DEED | |
License: https://creativecommons.org/licenses/by-nc-sa/4.0/ | |
Tested on GO v1.2.2 | |
*/ | |
package main | |
import ( | |
"fmt" |
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 | |
Adjust screen display brightness. | |
.DESCRIPTION | |
This script adjusts the screen display's brightness by accepting | |
a percentage value between 0 and 100 indicating the strength of | |
the brightness the screen display's backlight should emit. |
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 | |
Recursively removes all empty directories. | |
.DESCRIPTION | |
This script locally traverses all existing directories starting from | |
the current directory and then employs a depth first removal of empty | |
directories. |
NewerOlder