Files
bullshark.win/posts/windows/index.html
T
2026-08-10 22:26:24 -04:00

220 lines
6.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Trying to install Windows - bullshark369.org</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="http://localhost:1313/favicon.png">
<link rel="canonical" href="http://localhost:1313/posts/windows/" />
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/assets/css/extended.css">
<meta name="description" content="Trying and failing to install Windows"/>
<meta name="keywords" content="Nathan Buache, Test Manager, QA, Quality Assurance, Lausanne, Switzerland, Web Testing, Software Testing, QoQa"/>
<meta property="og:title" content="Trying to install Windows - bullshark369.org"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="http://localhost:1313/posts/windows/"/>
<meta property="og:site_name" content="bullshark369.org"/>
<meta property="og:description" content="Trying and failing to install Windows"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:title" content="Trying to install Windows"/>
<meta name="twitter:description" content="Trying and failing to install Windows"/>
</head>
<body class='page page-blog-single'>
<div id="menu-main-mobile" class="menu-main-mobile">
<ul class="menu">
<li class="menu-item-home">
<a href="http://localhost:1313/">Home</a>
</li>
<li class="menu-item-blog">
<a href="http://localhost:1313/posts/">Blog</a>
</li>
<li class="menu-item-contact">
<a href="http://localhost:1313/pages/contact/">Contact</a>
</li>
<li class="menu-item-friend projects">
<a href="http://localhost:1313/pages/frienpro/">Friend Projects</a>
</li>
</ul>
</div>
<div id="wrapper" class="wrapper">
<div class='header'>
<div class="menu-main">
<ul>
<li class="menu-item-home ">
<a href="/">
<span>Home</span>
</a>
</li>
<li class="menu-item-blog ">
<a href="/posts/">
<span>Blog</span>
</a>
</li>
<li class="menu-item-contact ">
<a href="/pages/contact/">
<span>Contact</span>
</a>
</li>
<li class="menu-item-friend projects ">
<a href="/pages/frienpro/">
<span>Friend Projects</span>
</a>
</li>
</ul>
</div>
<div id="toggle-menu-main-mobile" class="hamburger-trigger">
<button class="hamburger">Menu</button>
</div>
</div>
<div class="blog">
<div class="intro">
<h1>Trying to install Windows</h1>
</div>
<div class="content">
<h3 id="installing-windows-from-linux">Installing windows from Linux</h3>
<p>I attempted to install Windows on a new 512GB NVMe I bought so I can put Windows on it to play Tarkov.
Big mistake.</p>
<p>See it wants this driver to be able to sense the storage. The driver is the RAID or SATA driver from the manufactureres website. It has to be on the same drive as the installation media but if you dd the windows ISO onto the flash drive its read only. Using ventoy didn&rsquo;t help either. The driver just didn&rsquo;t work.</p>
<h3 id="giving-up-and-installing-windows-from-windows">Giving up and installing windows from windows</h3>
<p>Without using the Windows Media Installation tool you will have to install drivers from your motherboard manufacturers website. If they don&rsquo;t work you&rsquo;re screwed. I eventually gave up and used the installation tool on a windows laptop of mine. This worked fine OOB, didn&rsquo;t even need the driver. It then proceeded to be a normal windows installation and take 2 hours.
Using rufus you can automatically configure some things like a local account. Running Shift + F10 in the installer will open the command prompt and you can then type <code>oobe \\bypassnro</code>, disconnect it from any internet, then restart. Then you can click &ldquo;I don&rsquo;t have internet&rdquo; and you can make a local account.</p>
<h3 id="ctt-and-other-optimization-tools">CTT and other optimization tools</h3>
<p>I used to use CTT aka <code>irm christitus.com/win | iex</code>. I notice after about 2 years a common pattern. When I used CTT on a machine it would often blue screen, when I didn&rsquo;t it wouldn&rsquo;t. Take that for what you will but optimization tools to make Windows go from 9.5GB of background RAM usage to 9.2GB at the cost of stability isn&rsquo;t worth it to me.</p>
</div>
</div>
<div class="footer">
<p class="footer-credit">@bullshark.win maintained by shark</p>
<div class="footer-social">
<div class="social-link">
<a href="https://github.com/bullshar-k" title="GitHub" target="_blank" rel="noopener">
GitHub
</a>
</div>
<div class="social-link">
<a href="mailto:bullsharkgunsemail@pm.me" title="Email" target="_blank" rel="noopener">
Email
</a>
</div>
<button type="button" class="social-link social-copy" data-copy="@bullshar_k:matrix.org" title="Copy Matrix to clipboard">
<span class="social-copy-label">Matrix</span>
</button>
</div>
</div>
<script>
(function () {
var btns = document.querySelectorAll('.social-copy');
btns.forEach(function (btn) {
btn.addEventListener('click', function () {
var text = btn.getAttribute('data-copy');
var label = btn.querySelector('.social-copy-label, .contact-social-name');
var original = label ? label.textContent : btn.textContent;
function done() {
label.textContent = 'Copied!';
setTimeout(function () { label.textContent = original; }, 1500);
}
if (navigator.clipboard && navigator.clipboard.writeText) {
navigator.clipboard.writeText(text).then(done).catch(done);
} else {
var ta = document.createElement('textarea');
ta.value = text;
document.body.appendChild(ta);
ta.select();
try { document.execCommand('copy'); } catch (e) {}
document.body.removeChild(ta);
done();
}
});
});
})();
</script>
</div>
<script type="text/javascript" src="/js/bundle.js"></script>
</body>
</html>