Skip to content

Instantly share code, notes, and snippets.

View hihigash's full-sized avatar

Hirokazu Higashino hihigash

View GitHub Profile
@hihigash
hihigash / MarkdownStyleSheet.css
Created June 14, 2015 22:51
Markdown Style Sheet for Visual Studio Code
body{
font-family: Meiryo;
background: white;
font-size: 14px;
}
h1{
font-size: 200%;
border-color: #1e50a2;
border-bottom-style: double;
using System;
using System.IO;
using System.Reflection;
using System.Runtime.InteropServices;
namespace GetAppContainerSidFromName
{
class Program
{
[DllImport("userenv", SetLastError = true)]
@hihigash
hihigash / vmware_machine_settings.bat
Last active September 21, 2017 08:03
検証マシンのセットアップ時に使用する設定 (VMWare) for Windows 8.x
::
:: WINDOWS SETTINGS
::
:: キーボードの配列を英語配列にする
%SystemRoot%\System32\reg.exe ADD HKLM\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters /v "LayerDriver JPN" /t REG_SZ /d kbd101.dll /f
%SystemRoot%\System32\reg.exe ADD HKLM\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters /v "OverrideKeyboardIdentifier" /t REG_SZ /d PCAT_101KEY /f
%SystemRoot%\System32\reg.exe ADD HKLM\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters /v "OverrideKeyboardSubtype" /t REG_DWORD /d 0 /f
%SystemRoot%\System32\reg.exe ADD HKLM\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters /v "OverrideKeyboardType" /t REG_DWORD /d 7 /f
@hihigash
hihigash / Get-OutlookSentMail.ps1
Created March 31, 2014 02:39
Get-OutlookSentMail
## Outlook の送信トレイ情報を取得する
Function Get-OutlookSentMail
{
Add-type -assembly "Microsoft.Office.Interop.Outlook" | out-null
$olFolders = "Microsoft.Office.Interop.Outlook.olDefaultFolders" -as [type]
$outlook = new-object -comobject outlook.application
$namespace = $outlook.GetNameSpace("MAPI")
$folder = $namespace.getDefaultFolder($olFolders::olFolderSentMail)
$folder.items |
Select-Object -Property Subject, SentOn, Importance, To, CC, BCC