#how to install windows
Explore tagged Tumblr posts
ayjaydraws · 9 months ago
Text
Stobotnik but it's a shipping video made in windows movie maker from 2007 youtube
as requested by @madirws (with art by @madirws, @cheap-slaw, @carro-carrot, @demetera-kaziaik, @duckngk and @vyodka)
769 notes · View notes
Text
Tumblr media
3K notes · View notes
froget-me-nots · 2 months ago
Text
Tumblr media Tumblr media
deskpet mikey :)
Tumblr media
61 notes · View notes
andmaybegayer · 6 months ago
Text
bill gates is a rabid dog and he must be beaten to death with a stick
134 notes · View notes
nots0nu · 7 months ago
Text
Tumblr media
Cedric week:
•Day four
•JAN 8TH• magical mishaps!!!!
63 notes · View notes
coquelicoq · 2 months ago
Text
successfully installed my ac in UNDER FIFTEEN MINUTES and for the FIRST time did not have to use ANY duct tape because i THOUGHT AHEAD and several weeks ago asked my FRIEND who is a WOODWORKER to SLIGHTLY MODIFY A SMALL PIECE OF WOOD that my stepdad made for me (badly) ten years ago to hold my ac exhaust in place and it is WORKING as i INTENDED IT TO several weeks ago WHEN I ASKED MY FRIEND THE WOODWORKER TO PERFORM THIS SMALL MIRACLE FOR ME!!!
26 notes · View notes
muffinlance · 1 year ago
Text
Woo got Linux working! On a related note I have gotten over any fear of breaking things through the command line and also can now roll back to an earlier system backup. Yes those are related. In my defense, breaking things in interesting ways is a great way to figure out what's actually going wrong.
89 notes · View notes
moran-with-a-g · 3 months ago
Text
Tumblr media Tumblr media
Ugly sobbing in bed at 3am because I took a shower earlier and when I finished there was a dead cockroach next to my foot that wasn't there when I got in and because I sat down to eat afterwards and then I saw this huge alive motherfucker on my chair and it started flying around the apartment and tried to fly at me.
I managed to get the alive one out and the dead one is still on the floor of my shower and I'm too scared to try and move it because I'm scared it's actually alive and also because it's literally massive and I cannot touch it.
Yeah anyways did not expect to get a full on panic attack because of a goddamn cockroach. I don't usually have such a big issue with them. But here we are.
14 notes · View notes
windcarvedlyre · 3 months ago
Text
OH, in other news I finally got genshin running on linux with no graphical issues. It was annoying- I really hope mihoyo considers official linux support once windows 10 reaches end of life in october- but that means I'm no longer tied to windows 10 myself \o/ good riddance
11 notes · View notes
aerodaltonimperial · 1 year ago
Text
Tumblr media
Darby Allin & Jack Perry
AEW Dynamite 5.15.2023
40 notes · View notes
ghostlyheart · 7 months ago
Text
Drugged myself with benadryl so I will be asleep at midnight on NYE for the first time in years 😴 happy new year babes, I hope it treats you kindly 🎉🌠🫂
10 notes · View notes
alkemylabz · 5 months ago
Text
apparently "running your main computer on an os that is notoriously difficult to use for beginners" has also meant that ive cut back on doom scrolling a ton because im too busy reading documentation
15 notes · View notes
beebfreeb · 1 year ago
Note
have you heard of rain world
I have the game! I just haven't played very far into it at all, because I suck bad at it. ^.^
22 notes · View notes
queerautism · 1 year ago
Text
I was very very good and didn't bite the contractor guy that came into my house today even though I wanted to very much
33 notes · View notes
xiadz · 4 days ago
Text
I've been writing code or editing config files (also code) for like 14 hours per day for the last week.
And so I took a break to make a color palette instead, primarily using Mastodon album covers to pull from (Leviathan being the main focus). I need to organize it better before actually sharing but it's intended for both app/system usage as well as code editors. It's looking solid for both dark and light modes though.
I wish there were more hours in the day, there is so much that I want to do. 😭
3 notes · View notes
allaboutkeyingo · 3 months ago
Text
How to bypass Microsoft Account when installing Windows 11
Tumblr media
Microsoft has confirmed that the popular “bypassnro” command, which let users to skip connecting to the Internet and signing into a Microsoft Account, is being removed, when setting up a new Windows 11 PC.
Microsoft is now requiring every Windows 11 device be set up with an internet-connected account.
Windows 11 PCs that have already been set up without a Microsoft Account will be unaffected. This change only affects the Windows 11 install and setup experience, where the OS requires an internet connection and a Microsoft Account to progress.
There are still ways to bypass these requirements, Currently, it’s also possible to manually re-add the bypassnro command to your system by typing the following into a command prompt: “reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /v BypassNRO /t REG_DWORD /d 1 /f shutdown /r /t 0”
However, there’s no guarantee Microsoft will allow this additional workaround for long. There are other workarounds as well, such as using the unattended.xml installation, but this requires a lot more work and includes creating a new Windows installation image from scratch.
Steps to Create an Unattended XML File for Local Account
1. Basic unattend.xml to Skip Microsoft Account:
Here’s a minimal XML file that configures a local administrator account and skips OOBE (Out-of-Box Experience) prompts:
<?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="oobeSystem"> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <OOBE> <HideEULAPage>true</HideEULAPage> <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen> <HideOnlineAccountScreens>true</HideOnlineAccountScreens> <!-- Skips Microsoft account --> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> <NetworkLocation>Work</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> </OOBE> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value>YourPassword123</Value> <!-- Change this --> <PlainText>true</PlainText> <!-- Set to false if hashed --> </Password> <DisplayName>LocalAdmin</DisplayName> <Name>LocalAdmin</Name> <Group>Administrators</Group> </LocalAccount> </LocalAccounts> </UserAccounts> <AutoLogon> <Password> <Value>YourPassword123</Value> </Password> <Enabled>true</Enabled> <Username>LocalAdmin</Username> <LogonCount>999999</LogonCount> </AutoLogon> </component> </settings> </unattend>
2. Save the File
Save as autounattend.xml (for USB boot) or unattend.xml (for deployment tools).
Place it in the root of your Windows 11 installation USB or inject it into the ISO.
3. Use the File During Installation
Boot from the USB, and Windows Setup will automatically apply the settings.
No Microsoft account prompt will appear.
Get a Windows 11 Product key at keyingo.com for half price !
6 notes · View notes