Java7 は Oracle でしか入手できないようだ(と思う)。
- MSI はいろいろなオプションがあるが、例えば
/passive
とした場合...
> jdk-7u80-windows-x64.exe /passive
- JRE はインストールされずに JDK だけがインストールされる
- 環境変数は特に設定されないが、レジストリにインストールパスなどは記録される
Java7 は Oracle でしか入手できないようだ(と思う)。
/passive
とした場合...> jdk-7u80-windows-x64.exe /passive
Microsoft.DnsClient.Commands.DnsRecord_MX
と TypeName: Microsoft.DnsClient.Commands.DnsRecord_A
の2種類PS> Resolve-DnsName -Name hoge.co.jp -Type MX
Name Type TTL Section NameExchange Preference
---- ---- --- ------- ------------ ----------
hoge.co.jp MX 516 Answer smtp.hoge.co.jp 10
#pragma once | |
#ifndef WIN32_LEAN_AND_MEAN | |
#define WIN32_LEAN_AND_MEAN | |
#endif | |
#pragma comment (lib, "bcrypt") | |
#include <Windows.h> | |
#include <bcrypt.h> |
#include "pch.h" | |
#include <limits> | |
#include <stdexcept> | |
#include <type_traits> | |
#if !defined(__cpp_if_constexpr) || !defined(__cpp_static_assert) | |
#error | |
#endif |
#include "pch.h" | |
#include <compare> | |
#include <iostream> | |
// https://cpprefjp.github.io/lang/cpp20/consistent_comparison.html | |
struct Hoge | |
{ | |
int a, b; |
// | |
// https://learn.microsoft.com/ja-jp/windows/console/console-virtual-terminal-sequences | |
// | |
#if 1 | |
#include <stdio.h> | |
#include <wchar.h> | |
#include <windows.h> | |
#include <system_error> | |
#include <locale> |
#include "pch.h" | |
#define WIN32_LEAN_AND_MEAN | |
#define NOMINMAX | |
#include <Windows.h> | |
#include <algorithm> | |
// https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-wsprintfw | |
// | |
// * 1,024 bytes と記載されているが文字数の誤りと思われる |
#include <iostream> | |
#if 0 | |
int main() | |
{ | |
for (int i = 1; i <= 100; ++i) | |
{ | |
const int fizz = i % 3, buzz = i % 5; |
#!/bin/bash | |
OWNER=${1:?} | |
REPO=${2:?} | |
URL=`curl -sS -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${YOUR_TOKEN}" https://api.github.com/repos/${OWNER}/${REPO}/actions/artifacts | jq -r '.artifacts[0].archive_download_url'` | |
ZIP=$(mktemp) | |
curl -sS -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${YOUR_TOKEN}" -o ${ZIP} -L ${URL} | |
mkdir -p "${OWNER}/${REPO}" | |
unzip -j -o -d "${OWNER}/${REPO}" ${ZIP} | |
rm ${ZIP} |