<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: THEODORA</title>
    <description>The latest articles on DEV Community by THEODORA (@dorablog2024).</description>
    <link>https://dev.to/dorablog2024</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1406471%2Ff999d000-7644-4433-8781-079b6990a950.png</url>
      <title>DEV Community: THEODORA</title>
      <link>https://dev.to/dorablog2024</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dorablog2024"/>
    <language>en</language>
    <item>
      <title>CREATING A FOLDER USING GIT BASH AND PUSHING IT TO GITHUB</title>
      <dc:creator>THEODORA</dc:creator>
      <pubDate>Thu, 20 Jun 2024 14:34:52 +0000</pubDate>
      <link>https://dev.to/dorablog2024/creating-a-folder-using-git-bash-and-pushing-it-to-github-41p4</link>
      <guid>https://dev.to/dorablog2024/creating-a-folder-using-git-bash-and-pushing-it-to-github-41p4</guid>
      <description>&lt;p&gt;Git is a distribution version control system that multiple developers use to work on a project.&lt;/p&gt;

&lt;p&gt;GitHub is a cloud platform that uses Git as its core technology.&lt;br&gt;
To create a code and push it to GitHub using Git bash. Here is a step-by-step process.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open your git bash terminal and enter your details using 
the following commands
git config --global user.name "your username"
git config --global user.email "your GitHub email"&lt;/li&gt;
&lt;li&gt;cd ~ and create a directory (folder) using the command 
mkdir
mkdir "directory name" &lt;/li&gt;
&lt;li&gt;Enter into the directory you create using the cd command 
cd "directory name"&lt;/li&gt;
&lt;li&gt;Then initialize your master branch by running the command
git  init&lt;/li&gt;
&lt;li&gt;Create a file name index.html by running the command
touch index.html&lt;/li&gt;
&lt;li&gt;To input the html code in the file run the command 
vi index.html, a new page will open, paste the code you 
have copied or write your own code and exit with the 
escape (esc) botton, save and quit the command :wq&lt;/li&gt;
&lt;li&gt;To check the content of the file run the cat command
cat index.html&lt;/li&gt;
&lt;li&gt;Open your GitHub account on a browser in order to create 
a repository.&lt;/li&gt;
&lt;li&gt;Click on the icon that has your profile picture and click 
on repository.&lt;/li&gt;
&lt;li&gt;Click on New and give your repository a name, make sure 
it is Public. check the Readme box and click on create 
repository
11.Once is done you will see a green icon with the name 
Code, click on it and copy the https URL.&lt;/li&gt;
&lt;li&gt;Go back to Git bash and run the command
git remote add origin " paste the URL" you copied, and 
press enter.&lt;/li&gt;
&lt;li&gt;To add your code on run the command 
git add index.html.&lt;/li&gt;
&lt;li&gt;To check if the file was actually added in your git run 
the command
git status&lt;/li&gt;
&lt;li&gt;Now let's add a commit message using the command
git commit -m " add any message of your choice", check 
the status again 
16.Next input the major command to push your code, run the 
command
git push origin master and press enter. 
17.Now let's go to GitHub to see if truly we have 
successfully pushed. Click on the repository you created.&lt;/li&gt;
&lt;li&gt;Next click on main, and then click on master branch, you
see the index.html, click on it to see the code you 
pushed.
Attached is the screenshot of the above steps.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkrgaxd3mo17qq2d7phkb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkrgaxd3mo17qq2d7phkb.png" alt="Image description" width="782" height="715"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F69kwx9kvb6lvqx7yr041.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F69kwx9kvb6lvqx7yr041.png" alt="Image description" width="800" height="677"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsjsht894gfbri76j245b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsjsht894gfbri76j245b.png" alt="Image description" width="800" height="602"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1ld5jlvmofeos972ntrd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1ld5jlvmofeos972ntrd.png" alt="Image description" width="800" height="339"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7u7b849zbpe5cxdhohxz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7u7b849zbpe5cxdhohxz.png" alt="Image description" width="800" height="516"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frlpee1c34frw70e4zrnr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frlpee1c34frw70e4zrnr.png" alt="Image description" width="788" height="375"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmh3n33msl39ax4znl88q.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmh3n33msl39ax4znl88q.png" alt="Image description" width="800" height="322"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftbbs4o7q2wtvd6n8iehy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftbbs4o7q2wtvd6n8iehy.png" alt="Image description" width="660" height="485"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9mwmgh6m01il7m11uv1n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9mwmgh6m01il7m11uv1n.png" alt="Image description" width="800" height="391"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>devops</category>
      <category>git</category>
      <category>cloud</category>
      <category>github</category>
    </item>
    <item>
      <title>HOW TO CREATE A WINDOWS 11 VIRTUAL MACHINE IN AZURE</title>
      <dc:creator>THEODORA</dc:creator>
      <pubDate>Mon, 08 Apr 2024 13:01:05 +0000</pubDate>
      <link>https://dev.to/dorablog2024/how-to-create-a-windows-11-virtual-machine-in-azure-mg9</link>
      <guid>https://dev.to/dorablog2024/how-to-create-a-windows-11-virtual-machine-in-azure-mg9</guid>
      <description>&lt;p&gt;A Windows 11 virtual machine is like a computer inside your computer with special software. It runs windows 11 just like it's installed in a physical hardware, letting you test software, run applications  without changing your main computer.&lt;/p&gt;

&lt;p&gt;Kindly follow the steps below to create your windows 11 virtual machine.&lt;/p&gt;

&lt;p&gt;SIGN IN TO AZURE PORTAL&lt;/p&gt;

&lt;p&gt;As a prerequisite , you need an azure account. If you don't have you create one either free account or pay as you go.&lt;br&gt;
Now that you have an Azure subscription. sign in to the Azure portal with your email and password to get started.&lt;/p&gt;

&lt;p&gt;CREATE YOUR VIRTUAL MACHINE&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;In the search bar , type "Virtual Machine"&lt;/li&gt;
&lt;li&gt;Select "Virtual Machine" fromthe list of resources shown&lt;/li&gt;
&lt;li&gt;Click the "Create" button
4.Select the virtual machine highlighted&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frsly0evszj1oy7mb8vhb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frsly0evszj1oy7mb8vhb.png" alt="Image description" width="518" height="336"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;5.This will take you to "Basic" page&lt;/p&gt;

&lt;p&gt;PROJECT DETAILS&lt;br&gt;
Here we have the Subscription And Resource Group&lt;/p&gt;

&lt;p&gt;a. Subscription&lt;/p&gt;

&lt;p&gt;An Azure subscription is a payment plan used to access an manage Azure services. Azure also offer a free account option that  allows users to explore and try out various Azure services for the first 30 days.&lt;/p&gt;

&lt;p&gt;b. Resources Group&lt;/p&gt;

&lt;p&gt;A Resources Group isa logical container that holds related Azure resources such as Virtual Machines, Storage Accounts, Databases etc. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3itzpnjggu6alibi7mwm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3itzpnjggu6alibi7mwm.png" alt="Image description" width="767" height="282"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;INSTANCE DETAIL.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Give your you Virtual Machine a name&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;2.Select a region where you want your Virtual Machine to be located&lt;/p&gt;

&lt;p&gt;A Region isa geographical area containing one or more data centers that are connected through a dedicated regional low-latency network&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Next, click on availability Zone.
Availability zones in azure are unique physical locations with a region, providing resilience to data center failures. In Azure , a region consist of 3 availability zones, zone1, zone2 and zone3 
Click on the dropdown to select your choice.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjbq4kbfs7jpacsvgksf0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjbq4kbfs7jpacsvgksf0.png" alt="Image description" width="800" height="221"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;4.Select "SECURITY TYPE" from the dropdown&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhdzz98flqj17txr8bys4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhdzz98flqj17txr8bys4.png" alt="Image description" width="800" height="332"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;IMAGE SESSION
Image is the base operating system and software configuration that you select for your virtual machine.
Select Windows 11 Pro from the dropdown.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8jbwm8ykveq6me30vwjk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8jbwm8ykveq6me30vwjk.png" alt="Image description" width="800" height="426"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Select SIZE of your Virtual Machine.
Select size from dropdown or click on "See all sizes"
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fffpyf8jcal67n2azda43.png" alt="Image description" width="797" height="305"&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;NEXT is ADMINISTRATIVE ACCOUNT&lt;br&gt;
Fill  the Username , Password and Confirm Password&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6t5w2t87riw9ec3ghqim.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6t5w2t87riw9ec3ghqim.png" alt="Image description" width="753" height="162"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;INBOUND PORT RULES&lt;br&gt;
Here  select "Allow selected ports", then select RDP (3389)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9mdc4cf299vnwes018y2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9mdc4cf299vnwes018y2.png" alt="Image description" width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;NEXT CLICK ON DISKS  TO GO TO DISKS PAGE&lt;/p&gt;

&lt;p&gt;DISKS&lt;/p&gt;

&lt;p&gt;Here click on OS disk type , click on the dropdown and select Standard SSD.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy0v74xel94k2cm9riq3d.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy0v74xel94k2cm9riq3d.png" alt="Image description" width="800" height="441"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;LEAVE ALL OTHERS AT DEFAULT AND SKIP TO TAG.&lt;/p&gt;

&lt;p&gt;a. Give your Tag a Name. &lt;br&gt;
Tags are way to label resources in cloud&lt;br&gt;
b. Click on Review and create&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4vzp1hov9l6ou7lclfu0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4vzp1hov9l6ou7lclfu0.png" alt="Image description" width="800" height="476"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;REVIEW THE SUMMARY OF YOUR VIRTUAL MACHINE CONFIGURATION ANE CLICK  ON CREATE&lt;/p&gt;

&lt;p&gt;Next is Validation Passed.&lt;br&gt;
Once the Validation is passed, click on Create&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsd3u3h2776kqmgaz0gyq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsd3u3h2776kqmgaz0gyq.png" alt="Image description" width="747" height="480"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;DEPLOYMENT IS COMPLETE CLICK ON GO TO RESOURCE&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhhbugyp3qbh6htl1m4qy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhhbugyp3qbh6htl1m4qy.png" alt="Image description" width="772" height="346"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;CONNECT TO YOUR  WINDOWS VIRTUAL MACHINE&lt;/p&gt;

&lt;p&gt;Click on Connect&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd0blgjukq9agzpn8mwr4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd0blgjukq9agzpn8mwr4.png" alt="Image description" width="737" height="108"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;NEXT DOWNLOAD RDP FILE&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdxqje858jqpgvwd7zv2f.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdxqje858jqpgvwd7zv2f.png" alt="Image description" width="407" height="279"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;OPEN THE DOWNLOAD FILE AND CONNECT.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F41g69an9d8z82ctd1yha.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F41g69an9d8z82ctd1yha.png" alt="Image description" width="555" height="297"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;IMPUT YOUR USERNAME AND PASSWORD AND CLICK OK&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff47yl2fssfb5hu6kij0i.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff47yl2fssfb5hu6kij0i.png" alt="Image description" width="489" height="402"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;CLICK YES TO THE PROMPT TO CONNECT WINDOWS 11 PRO&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqp4fl4xdc93c5k0s1oo9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqp4fl4xdc93c5k0s1oo9.png" alt="Image description" width="434" height="404"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;WELCOME TO WINDOWS 11 PRO&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F94a649bfqs7xgey5j47w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F94a649bfqs7xgey5j47w.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
