<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>windows on Ohidur's Blog</title><link>https://blog.ohidur.com/tags/windows/</link><description>Recent content in windows on Ohidur's Blog</description><generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>me@ohidur.com (Ohidur Rahman Bappy)</managingEditor><webMaster>me@ohidur.com (Ohidur Rahman Bappy)</webMaster><copyright>©{year} Ohidur.com</copyright><lastBuildDate>Sun, 07 Feb 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://blog.ohidur.com/tags/windows/index.xml" rel="self" type="application/rss+xml"/><item><title>Add "Publish to Github" to context menu</title><link>https://blog.ohidur.com/posts/windows/add-publish-to-github-to-context-menu/</link><pubDate>Sun, 07 Feb 2021 00:00:00 +0000</pubDate><author>me@ohidur.com (Ohidur Rahman Bappy)</author><atom:modified>Mon, 08 Mar 2021 14:06:10 +0600</atom:modified><guid>https://blog.ohidur.com/posts/windows/add-publish-to-github-to-context-menu/</guid><description>Where to create context menu entry?
FILES HKEY_CURRENT_USER\Software\Classes\*\shell\ Opens on a file DIRECTORY HKEY_CURRENT_USER\Software\Classes\Directory\shell Opens on a directory DIRECTORY_BACKGROUND HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell Opens on the background of the Directory DRIVE HKEY_CURRENT_USER\Software\Classes\Drive\shell Opens on the drives(think USBs) The python script for commiting
import subprocess import os import re import unicodedata USER_NAMESPACE=&amp;#34;YOUR_USER_NAME_HERE&amp;#34; def slugify(value, allow_unicode=False): &amp;#34;&amp;#34;&amp;#34; Convert to ASCII if &amp;#39;allow_unicode&amp;#39; is False. Convert spaces or repeated dashes to single dashes. Remove characters that aren&amp;#39;t alphanumerics, underscores, or hyphens.</description><dc:creator>Ohidur Rahman Bappy</dc:creator><category>windows</category></item><item><title>Alternate data streams - the less known feature of NTFS</title><link>https://blog.ohidur.com/posts/windows/alternate-data-streams/</link><pubDate>Fri, 05 Feb 2021 00:00:00 +0000</pubDate><author>me@ohidur.com (Ohidur Rahman Bappy)</author><atom:modified>Mon, 08 Mar 2021 14:06:10 +0600</atom:modified><guid>https://blog.ohidur.com/posts/windows/alternate-data-streams/</guid><description>Alternate Data Streams - ADS NTFS file streams, also known as alternate data streams (ADS), are part of every file, as well as directories (folders), in a Windows NTFS volume. NTFS files and folders are comprised of attributes one of which is $Data. The content we normally associate with a file such as the text in a .txt file or the executable code in a .exe file is stored in the ‘default’ $Data attribute or ‘stream’.</description><dc:creator>Ohidur Rahman Bappy</dc:creator><category>windows</category></item><item><title>Basic of windows cmd batch language</title><link>https://blog.ohidur.com/posts/windows/basic-cmd/</link><pubDate>Tue, 29 Dec 2020 00:00:00 +0000</pubDate><author>me@ohidur.com (Ohidur Rahman Bappy)</author><atom:modified>Thu, 22 Apr 2021 11:44:07 +0600</atom:modified><guid>https://blog.ohidur.com/posts/windows/basic-cmd/</guid><description>Create file association Assoc .php=phpfile Ftype phpfile=&amp;#34;C:\Program Files (x86)\Notepad++\notepad++.exe&amp;#34; %1 Tips
When you rename the folder, press and hold Alt as you type 255 on the numeric keypad, and then press Enter.
Note that you must type the numbers on a numeric keypad, not the number keys at the top of your keyboard.</description><dc:creator>Ohidur Rahman Bappy</dc:creator><category>windows</category></item><item><title>Hide one file in another</title><link>https://blog.ohidur.com/posts/windows/hide-one-file-in-another/</link><pubDate>Tue, 22 Dec 2020 00:00:00 +0000</pubDate><author>me@ohidur.com (Ohidur Rahman Bappy)</author><atom:modified>Mon, 08 Mar 2021 14:06:10 +0600</atom:modified><guid>https://blog.ohidur.com/posts/windows/hide-one-file-in-another/</guid><description>Usage::
copy /b source-image.jpg + your-archive.zip target-image-file.jpg Here’s what each part in the command means:
source-image.jpg – this is the image that you already have on your PC and that you want to hide your files in.
your-archive.zip – this is the ZIP file containing the files that you want to hide.
target-image-file.jpg – this will be the resulting file that contains your image and your ZIP archive.
How to see the hidden file We can open the target-image-file.</description><dc:creator>Ohidur Rahman Bappy</dc:creator><category>windows</category></item><item><title>Rename files with cmd</title><link>https://blog.ohidur.com/posts/windows/rename-files-with-cmd/</link><pubDate>Tue, 22 Dec 2020 00:00:00 +0000</pubDate><author>me@ohidur.com (Ohidur Rahman Bappy)</author><atom:modified>Mon, 08 Mar 2021 14:06:10 +0600</atom:modified><guid>https://blog.ohidur.com/posts/windows/rename-files-with-cmd/</guid><description>You can use ren (as in rename):
ren *.XXX *.YYY
And of course, switch XXX and YYY for the appropriate extensions. It will change from XXX to YYY. If you want to change all extensions, just use the wildcard again:
ren . *.YYY
One way to make this work recursively is with the FOR command. It can be used with the /R option to recursively apply a command to matching files.</description><dc:creator>Ohidur Rahman Bappy</dc:creator><category>windows</category></item><item><title>Running linux cli and gui apps on windows using wsl</title><link>https://blog.ohidur.com/posts/windows/running-cli-gui-apps-with-wsl2/</link><pubDate>Sat, 19 Dec 2020 00:00:00 +0000</pubDate><author>me@ohidur.com (Ohidur Rahman Bappy)</author><atom:modified>Mon, 08 Mar 2021 14:06:10 +0600</atom:modified><guid>https://blog.ohidur.com/posts/windows/running-cli-gui-apps-with-wsl2/</guid><description>Using WSL 2 to run Linux GUI applications in Windows 10 with a shortcut
Install WSL 2. Link to parent tutorial
What is a Linux Desktop Environment? If you use Linux without a Desktop Environment, you just have a terminal to communicate with Linux kernel which is good when you work with servers but when you are developing software you almost always need IDE, web browser, and several other tools and utilities, because of these GUI applications you need to install a Desktop Environment like Gnome, KDE and … which provide a window manager (and some other important components like Windowing system, Display server and …) to show the GUI and manage interaction with users.</description><dc:creator>Ohidur Rahman Bappy</dc:creator><category>windows</category></item><item><title>How to save windows spotlight images</title><link>https://blog.ohidur.com/posts/windows/save-spotlight-images/</link><pubDate>Sun, 13 Dec 2020 00:00:00 +0000</pubDate><author>me@ohidur.com (Ohidur Rahman Bappy)</author><atom:modified>Mon, 08 Mar 2021 14:06:10 +0600</atom:modified><guid>https://blog.ohidur.com/posts/windows/save-spotlight-images/</guid><description>open run copy %localappdata%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets Paste it Now we can see the photos in this folder.
The files are not renamed with the right format.
Sort the files by size. Files with bigger sizes contains the photo.
Rename it with an extension .jpg
That&amp;rsquo;s it.</description><dc:creator>Ohidur Rahman Bappy</dc:creator><category>windows</category></item><item><title>How to create an undeletable folder in windows pc</title><link>https://blog.ohidur.com/posts/windows/create-undeletable-folder-windows/</link><pubDate>Fri, 15 Feb 2019 00:00:00 +0000</pubDate><author>me@ohidur.com (Ohidur Rahman Bappy)</author><atom:modified>Mon, 08 Mar 2021 14:06:10 +0600</atom:modified><guid>https://blog.ohidur.com/posts/windows/create-undeletable-folder-windows/</guid><description>In this tutorial, you will learn the cool and simple trick to Create an undeletable, undestroyable and unrenamable Folders In Windows operating system. Most of the Peoples are not aware that it is possible to create Undeletable, Unrenamable folder in windows without any software. To Test, this concept just follows simple steps given below.
Try to make a new folder in windows &amp;amp; give it name con,aux, lpt1, lpt2, lpt3 up to lpt9 you won’t be allowed to create a folder with above-mentioned names.</description><dc:creator>Ohidur Rahman Bappy</dc:creator><category>tricks</category><category>windows</category></item><item><title>Locate startup folder in Windows PC</title><link>https://blog.ohidur.com/posts/windows/startup-folder-windows/</link><pubDate>Mon, 12 Mar 2018 00:00:00 +0000</pubDate><author>me@ohidur.com (Ohidur Rahman Bappy)</author><atom:modified>Mon, 08 Mar 2021 14:06:10 +0600</atom:modified><guid>https://blog.ohidur.com/posts/windows/startup-folder-windows/</guid><description>Startup folders in windows are located in these directory C:\Users\%username%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
and
C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp
To access from the run dialog Open the Run function dialog box by pressing the Windows key + R key simultaneously.
All Users Current User The All Users Startup Folder requires the following path:
Shell:common startup The Current User Startup Folder requires:
Shell:startup 'use strict'; var containerId = JSON.parse("\"37425f1fb315ce94\""); var containerElem = document.</description><dc:creator>Ohidur Rahman Bappy</dc:creator><category>windows</category></item></channel></rss>