diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.mts
similarity index 73%
rename from docs/.vitepress/config.ts
rename to docs/.vitepress/config.mts
index fbc7fe9ba1..6c20048633 100644
--- a/docs/.vitepress/config.ts
+++ b/docs/.vitepress/config.mts
@@ -1,9 +1,10 @@
-import { createWriteStream } from 'node:fs'
-import { resolve } from 'node:path'
-import { SitemapStream } from 'sitemap'
-import { defineConfig } from 'vitepress'
+import { createWriteStream } from 'node:fs';
+import { resolve } from 'node:path';
+import { SitemapStream } from 'sitemap';
+import { defineConfig } from 'vitepress';
+
+const links: { url: string; lastmod: number }[] = [];
-const links = []
export default defineConfig({
lastUpdated: true,
lang: 'zh-CN',
@@ -11,94 +12,93 @@ export default defineConfig({
if (!/[\\/]404\.html$/.test(id)) {
links.push({
url: pageData.relativePath.replace(/\/index\.md$/, '/').replace(/\.md$/, '.html'),
- lastmod: pageData.lastUpdated,
- })
+ lastmod: pageData.lastUpdated ?? Date.now(),
+ });
}
},
buildEnd: async ({ outDir }) => {
const sitemap = new SitemapStream({
hostname: 'https://www.spiritlhl.net/'
- })
- const writeStream = createWriteStream(resolve(outDir, 'sitemap.xml'))
- sitemap.pipe(writeStream)
- links.forEach((link) => sitemap.write(link))
- sitemap.end()
- await new Promise((r) => writeStream.on('finish', r))
+ });
+ const writeStream = createWriteStream(resolve(outDir, 'sitemap.xml'));
+ sitemap.pipe(writeStream);
+ links.forEach((link) => sitemap.write(link));
+ sitemap.end();
+ await new Promise((r) => writeStream.on('finish', r));
},
head: [
- ['link', { rel: 'icon', href: 'https://raw.githubusercontent.com/spiritlhls/pages/main/logo.png' }],
+ ['link', { rel: 'icon', href: 'https://cdn.spiritlhl.net/https://raw.githubusercontent.com/spiritlhls/pages/main/logo.png' }],
['meta', { name: 'google-site-verification', content: 'wdrGBim_2XmtMrqxivze70saMiPQAiOhpmN3KAWb0Sw' }],
- //
['meta', { name: 'msvalidate.01', content: 'FC9B6B8BEB3D3B56844ADA69766DBB24' }],
- //
['script', {
- async: true,
src: "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5991535488582679",
crossorigin: "anonymous"
}],
],
locales: {
root: {
- lang: 'zh-CN',
- label: '简体中文',
- title: '一键虚拟化项目',
- description: '开源、易于使用的服务器虚拟化项目',
- link: '/',
- themeConfig: {
- logo: { src: 'https://raw.githubusercontent.com/spiritlhls/pages/main/logo.png', width: 24, height: 24 },
- lastUpdatedText: '上次更新',
- editLink: {
- pattern: 'https://github.com/oneclickvirt/oneclickvirt.github.io/edit/main/docs/:path',
- text: '在GitHub中编辑',
+ lang: 'zh-CN',
+ label: '简体中文',
+ title: '一键虚拟化项目',
+ description: '开源、易于使用的服务器虚拟化项目',
+ link: '/',
+ themeConfig: {
+ logo: { src: 'https://cdn.spiritlhl.net/https://raw.githubusercontent.com/spiritlhls/pages/main/logo.png' },
+ lastUpdatedText: '上次更新',
+ editLink: {
+ pattern: 'https://github.com/oneclickvirt/oneclickvirt.github.io/edit/main/docs/:path',
+ text: '在GitHub中编辑',
+ },
+ nav: [
+ {
+ text: '一键虚拟化',
+ link: '/',
+ activeMatch: '^/$|^/guide/'
},
- nav: [
- { text: '一键虚拟化',
- link: '/',
- activeMatch: '^/$|^/guide/'
- },
- { text: 'Linux相关项目',
- link: '/case/index',
- activeMatch: '^/case/'
- },
- // {
- // text: '开发手册',
- // link: '/developer/index',
- // activeMatch: '^/developer/'
- // },
- { text: 'VPS余量监控', link: 'https://spiders.spiritlhl.net/' },
- { text: 'VPS测试存档', link: 'https://beta.spiritlhl.net/' }
- ],
- sidebar: {
- '/': getGuideSidebarZhCN(),
- '/guide/': getGuideSidebarZhCN(),
- '/case/': getCaseSidebarZhCN(),
- '/developer/': getDeveloperSidebarZhCN(),
- }
+ {
+ text: 'Linux相关项目',
+ link: '/case/index',
+ activeMatch: '^/case/'
+ },
+ // {
+ // text: '开发手册',
+ // link: '/developer/index',
+ // activeMatch: '^/developer/'
+ // },
+ { text: 'VPS余量监控', link: 'https://spiders.spiritlhl.net/' },
+ { text: 'VPS测试存档', link: 'https://beta.spiritlhl.net/' }
+ ],
+ sidebar: {
+ '/': getGuideSidebarZhCN(),
+ '/guide/': getGuideSidebarZhCN(),
+ '/case/': getCaseSidebarZhCN(),
+ '/developer/': getDeveloperSidebarZhCN(),
}
- },
- en: {
- lang: 'en-US',
- label: 'English',
- title: 'One Click Virtualization',
- description: 'Open source, easy to use server virtualization project',
- link: '/en/',
- themeConfig: {
- logo: { src: 'https://raw.githubusercontent.com/spiritlhls/pages/main/logo.png', width: 24, height: 24 },
- lastUpdatedText: 'Last Updated',
- editLink: {
- text: 'Edit this page on GitHub',
- pattern: 'https://github.com/oneclickvirt/oneclickvirt.github.io/edit/main/docs/:path',
- },
- nav: [
- { text: 'One Click Virtualization', link: '/en/', activeMatch: '^/en/guide/' },
- // { text: 'Development Manual', link: '/en/developer/index', activeMatch: '^/en/developer/' },
- { text: 'VPS Stock Monitor', link: 'https://spiders.spiritlhl.net/' },
- { text: 'VPS Test Archive', link: 'https://beta.spiritlhl.net/' }
- ],
- sidebar: {
- '/en/': getGuideSidebarEnUS(),
- '/en/guide/': getGuideSidebarEnUS(),
- '/en/developer/': getDeveloperSidebarEnUS()
+ }
+ },
+ en: {
+ lang: 'en-US',
+ label: 'English',
+ title: 'One Click Virtualization',
+ description: 'Open source, easy to use server virtualization project',
+ link: '/en/',
+ themeConfig: {
+ logo: { src: 'https://cdn.spiritlhl.net/https://raw.githubusercontent.com/spiritlhls/pages/main/logo.png' },
+ lastUpdatedText: 'Last Updated',
+ editLink: {
+ text: 'Edit this page on GitHub',
+ pattern: 'https://github.com/oneclickvirt/oneclickvirt.github.io/edit/main/docs/:path',
+ },
+ nav: [
+ { text: 'One Click Virtualization', link: '/en/', activeMatch: '^/en/guide/' },
+ // { text: 'Development Manual', link: '/en/developer/index', activeMatch: '^/en/developer/' },
+ { text: 'VPS Stock Monitor', link: 'https://spiders.spiritlhl.net/' },
+ { text: 'VPS Test Archive', link: 'https://beta.spiritlhl.net/' }
+ ],
+ sidebar: {
+ '/en/': getGuideSidebarEnUS(),
+ '/en/guide/': getGuideSidebarEnUS(),
+ '/en/developer/': getDeveloperSidebarEnUS()
},
},
},
@@ -117,7 +117,7 @@ export default defineConfig({
copyright: 'Copyright © 2022-present oneclickvirt'
}
}
-})
+});
function getGuideSidebarZhCN() {
return [
@@ -191,7 +191,7 @@ function getGuideSidebarZhCN() {
{ text: '捐赠', link: '/guide/dashboardq.html' },
]
}
- ]
+ ];
}
function getCaseSidebarZhCN() {
@@ -210,7 +210,7 @@ function getCaseSidebarZhCN() {
{ text: '9. convoy面板安装脚本', link: '/case/case9.html' }
]
}
- ]
+ ];
}
function getDeveloperSidebarZhCN() {
@@ -221,7 +221,7 @@ function getDeveloperSidebarZhCN() {
{ text: 'l10n', link: '/developer/l10n.html' }
]
}
- ]
+ ];
}
function getGuideSidebarEnUS() {
@@ -239,6 +239,7 @@ function getGuideSidebarEnUS() {
{ text: 'PVE main installation', link: '/en/guide/pve/pve_install.html' },
{ text: 'KVM Virtualization', link: '/en/guide/pve/pve_kvm.html' },
{ text: 'LXC Virtualization', link: '/en/guide/pve/pve_lxc.html' },
+ { text: 'Windows Virtual Machine', link: '/en/guide/pve/pve_windows.html' },
{ text: 'Custom', link: '/en/guide/pve/pve_custom.html' },
{ text: 'Acknowledgements', link: '/en/guide/pve/pve_thanks.html' },
{ text: 'FAQ', link: '/en/guide/pve/pve_qa.html' }
@@ -295,7 +296,7 @@ function getGuideSidebarEnUS() {
{ text: 'Donation', link: '/guide/dashboardq.html' }
]
}
- ]
+ ];
}
function getDeveloperSidebarEnUS() {
@@ -306,5 +307,5 @@ function getDeveloperSidebarEnUS() {
{ text: 'l10n', link: '/en/developer/l10n.html' }
]
}
- ]
-}
+ ];
+}
\ No newline at end of file
diff --git a/docs/en/guide/pve/images/432192899-d9453c3b-46cd-4bc1-8c61-4f987b84dbdb.png b/docs/en/guide/pve/images/432192899-d9453c3b-46cd-4bc1-8c61-4f987b84dbdb.png
new file mode 100644
index 0000000000..6295590d1c
Binary files /dev/null and b/docs/en/guide/pve/images/432192899-d9453c3b-46cd-4bc1-8c61-4f987b84dbdb.png differ
diff --git a/docs/en/guide/pve/images/432192951-c1dd421b-f516-47eb-a415-f54d56b34945.png b/docs/en/guide/pve/images/432192951-c1dd421b-f516-47eb-a415-f54d56b34945.png
new file mode 100644
index 0000000000..e1cd771ad4
Binary files /dev/null and b/docs/en/guide/pve/images/432192951-c1dd421b-f516-47eb-a415-f54d56b34945.png differ
diff --git a/docs/en/guide/pve/images/432193100-8ceb8253-1652-4194-bf7d-b64232612eaf.png b/docs/en/guide/pve/images/432193100-8ceb8253-1652-4194-bf7d-b64232612eaf.png
new file mode 100644
index 0000000000..5ce414790a
Binary files /dev/null and b/docs/en/guide/pve/images/432193100-8ceb8253-1652-4194-bf7d-b64232612eaf.png differ
diff --git a/docs/en/guide/pve/images/432193274-3704426d-d665-4672-b9f8-50504191eff0.png b/docs/en/guide/pve/images/432193274-3704426d-d665-4672-b9f8-50504191eff0.png
new file mode 100644
index 0000000000..cbc221db1f
Binary files /dev/null and b/docs/en/guide/pve/images/432193274-3704426d-d665-4672-b9f8-50504191eff0.png differ
diff --git a/docs/en/guide/pve/images/432193298-0badebcb-5755-4ced-86cc-01368748f761.png b/docs/en/guide/pve/images/432193298-0badebcb-5755-4ced-86cc-01368748f761.png
new file mode 100644
index 0000000000..f342fd91ec
Binary files /dev/null and b/docs/en/guide/pve/images/432193298-0badebcb-5755-4ced-86cc-01368748f761.png differ
diff --git a/docs/en/guide/pve/images/432193391-68f0eeeb-fc9f-4568-8ddf-777caf901345.png b/docs/en/guide/pve/images/432193391-68f0eeeb-fc9f-4568-8ddf-777caf901345.png
new file mode 100644
index 0000000000..3b695e9e5d
Binary files /dev/null and b/docs/en/guide/pve/images/432193391-68f0eeeb-fc9f-4568-8ddf-777caf901345.png differ
diff --git a/docs/en/guide/pve/images/432193462-03a2728f-fa88-4884-a0f9-43f8e92f054b.png b/docs/en/guide/pve/images/432193462-03a2728f-fa88-4884-a0f9-43f8e92f054b.png
new file mode 100644
index 0000000000..edb55dac8d
Binary files /dev/null and b/docs/en/guide/pve/images/432193462-03a2728f-fa88-4884-a0f9-43f8e92f054b.png differ
diff --git a/docs/en/guide/pve/images/432193493-d549cae1-7cf1-40f5-9767-a628878520dc.png b/docs/en/guide/pve/images/432193493-d549cae1-7cf1-40f5-9767-a628878520dc.png
new file mode 100644
index 0000000000..45c8a72983
Binary files /dev/null and b/docs/en/guide/pve/images/432193493-d549cae1-7cf1-40f5-9767-a628878520dc.png differ
diff --git a/docs/en/guide/pve/images/432193525-695a77d0-cadb-4eab-9c0c-d1cbea3f6d02.png b/docs/en/guide/pve/images/432193525-695a77d0-cadb-4eab-9c0c-d1cbea3f6d02.png
new file mode 100644
index 0000000000..fdacedd09e
Binary files /dev/null and b/docs/en/guide/pve/images/432193525-695a77d0-cadb-4eab-9c0c-d1cbea3f6d02.png differ
diff --git a/docs/en/guide/pve/images/432193740-df901161-26b9-43d1-9106-baeb6485568c.png b/docs/en/guide/pve/images/432193740-df901161-26b9-43d1-9106-baeb6485568c.png
new file mode 100644
index 0000000000..5514d2811d
Binary files /dev/null and b/docs/en/guide/pve/images/432193740-df901161-26b9-43d1-9106-baeb6485568c.png differ
diff --git a/docs/en/guide/pve/images/432193821-7c660689-c6bf-47fd-adef-e7bc3b139873.png b/docs/en/guide/pve/images/432193821-7c660689-c6bf-47fd-adef-e7bc3b139873.png
new file mode 100644
index 0000000000..1127c3162b
Binary files /dev/null and b/docs/en/guide/pve/images/432193821-7c660689-c6bf-47fd-adef-e7bc3b139873.png differ
diff --git a/docs/en/guide/pve/images/432193878-c7283ee4-d5cd-4091-a57f-e9e476468871.png b/docs/en/guide/pve/images/432193878-c7283ee4-d5cd-4091-a57f-e9e476468871.png
new file mode 100644
index 0000000000..4bac37291d
Binary files /dev/null and b/docs/en/guide/pve/images/432193878-c7283ee4-d5cd-4091-a57f-e9e476468871.png differ
diff --git a/docs/en/guide/pve/images/432193920-58698c75-97f4-4091-bbaa-a2a435468c28.png b/docs/en/guide/pve/images/432193920-58698c75-97f4-4091-bbaa-a2a435468c28.png
new file mode 100644
index 0000000000..d2b5ab9b3d
Binary files /dev/null and b/docs/en/guide/pve/images/432193920-58698c75-97f4-4091-bbaa-a2a435468c28.png differ
diff --git a/docs/en/guide/pve/images/432193959-c886b28e-8107-469c-9042-8479c46cabaa.png b/docs/en/guide/pve/images/432193959-c886b28e-8107-469c-9042-8479c46cabaa.png
new file mode 100644
index 0000000000..314b08c3af
Binary files /dev/null and b/docs/en/guide/pve/images/432193959-c886b28e-8107-469c-9042-8479c46cabaa.png differ
diff --git a/docs/en/guide/pve/images/432194105-63a1521a-b3fd-40ae-8992-b91046d0f346.png b/docs/en/guide/pve/images/432194105-63a1521a-b3fd-40ae-8992-b91046d0f346.png
new file mode 100644
index 0000000000..18ca4c36ae
Binary files /dev/null and b/docs/en/guide/pve/images/432194105-63a1521a-b3fd-40ae-8992-b91046d0f346.png differ
diff --git a/docs/en/guide/pve/images/432194142-454b13e1-f948-4890-ab24-773afc0919e1.png b/docs/en/guide/pve/images/432194142-454b13e1-f948-4890-ab24-773afc0919e1.png
new file mode 100644
index 0000000000..41109c1610
Binary files /dev/null and b/docs/en/guide/pve/images/432194142-454b13e1-f948-4890-ab24-773afc0919e1.png differ
diff --git a/docs/en/guide/pve/images/432194244-228adbbf-4c00-48c0-bd58-94dc1f081369.png b/docs/en/guide/pve/images/432194244-228adbbf-4c00-48c0-bd58-94dc1f081369.png
new file mode 100644
index 0000000000..e7119661c4
Binary files /dev/null and b/docs/en/guide/pve/images/432194244-228adbbf-4c00-48c0-bd58-94dc1f081369.png differ
diff --git a/docs/en/guide/pve/images/432194273-9cb29c4c-78eb-49b2-9e1b-0e818bc9ca62.png b/docs/en/guide/pve/images/432194273-9cb29c4c-78eb-49b2-9e1b-0e818bc9ca62.png
new file mode 100644
index 0000000000..157414553c
Binary files /dev/null and b/docs/en/guide/pve/images/432194273-9cb29c4c-78eb-49b2-9e1b-0e818bc9ca62.png differ
diff --git a/docs/en/guide/pve/images/432194639-ba4370df-ba6d-48fb-9255-e285f2d27377.png b/docs/en/guide/pve/images/432194639-ba4370df-ba6d-48fb-9255-e285f2d27377.png
new file mode 100644
index 0000000000..93c8c2c64a
Binary files /dev/null and b/docs/en/guide/pve/images/432194639-ba4370df-ba6d-48fb-9255-e285f2d27377.png differ
diff --git a/docs/en/guide/pve/images/432194663-b4a7e456-878a-4829-bda1-05c8a9d6b6a7.png b/docs/en/guide/pve/images/432194663-b4a7e456-878a-4829-bda1-05c8a9d6b6a7.png
new file mode 100644
index 0000000000..47ed9992fd
Binary files /dev/null and b/docs/en/guide/pve/images/432194663-b4a7e456-878a-4829-bda1-05c8a9d6b6a7.png differ
diff --git a/docs/en/guide/pve/images/net1.png b/docs/en/guide/pve/images/net1.png
new file mode 100644
index 0000000000..946a9fa427
Binary files /dev/null and b/docs/en/guide/pve/images/net1.png differ
diff --git a/docs/en/guide/pve/images/net2.png b/docs/en/guide/pve/images/net2.png
new file mode 100644
index 0000000000..b6fe21c79b
Binary files /dev/null and b/docs/en/guide/pve/images/net2.png differ
diff --git a/docs/en/guide/pve/images/net3.png b/docs/en/guide/pve/images/net3.png
new file mode 100644
index 0000000000..a1a2ba4bba
Binary files /dev/null and b/docs/en/guide/pve/images/net3.png differ
diff --git a/docs/en/guide/pve/images/net4.png b/docs/en/guide/pve/images/net4.png
new file mode 100644
index 0000000000..4ff2ef3600
Binary files /dev/null and b/docs/en/guide/pve/images/net4.png differ
diff --git a/docs/en/guide/pve/images/pve_kvm_1.png b/docs/en/guide/pve/images/pve_kvm_1.png
new file mode 100644
index 0000000000..5731ea560c
Binary files /dev/null and b/docs/en/guide/pve/images/pve_kvm_1.png differ
diff --git a/docs/en/guide/pve/images/pve_kvm_2.png b/docs/en/guide/pve/images/pve_kvm_2.png
new file mode 100644
index 0000000000..059cd8dc77
Binary files /dev/null and b/docs/en/guide/pve/images/pve_kvm_2.png differ
diff --git a/docs/en/guide/pve/images/pve_kvm_3.png b/docs/en/guide/pve/images/pve_kvm_3.png
new file mode 100644
index 0000000000..64cf2925e3
Binary files /dev/null and b/docs/en/guide/pve/images/pve_kvm_3.png differ
diff --git a/docs/en/guide/pve/images/readme.md b/docs/en/guide/pve/images/readme.md
new file mode 100644
index 0000000000..56a78ce62f
--- /dev/null
+++ b/docs/en/guide/pve/images/readme.md
@@ -0,0 +1 @@
+暂存图片
diff --git a/docs/en/guide/pve/pve_kvm.md b/docs/en/guide/pve/pve_kvm.md
index a53447aa31..3d018c4de3 100644
--- a/docs/en/guide/pve/pve_kvm.md
+++ b/docs/en/guide/pve/pve_kvm.md
@@ -20,15 +20,15 @@ bash <(curl -sSL https://raw.githubusercontent.com/fscarmen/tools/main/root.sh)
**Commands to set up the testing environment for executing this project are as follows:**
-
+
To perform the above-mentioned query, you only need to use the one-click script below to automatically create a virtual machine. There is no need to manually modify settings on the web interface.
-
+
After creating the virtual machines using the subsequent script as mentioned above, it **may** be necessary to manually modify the settings on the web interface. You will need to disable hardware nested virtualization for each respective virtual machine, as shown in the following diagram.
-
+
Stop the virtual machine before making modifications. After the modifications are done, you can start the machine to use NOVNC. Failure to close it **may** result in bugs that render this virtual machine unusable.
diff --git a/docs/en/guide/pve/pve_windows.md b/docs/en/guide/pve/pve_windows.md
new file mode 100644
index 0000000000..b94994b58e
--- /dev/null
+++ b/docs/en/guide/pve/pve_windows.md
@@ -0,0 +1,95 @@
+---
+outline: deep
+---
+
+## Using ISO Image with VirtIO for VM Setup
+
+### 1. Download the Image
+Before installation, you need to download the image file via `local(pve) --> ISO images --> Download from URL`
+
+For the download link (`URL:`), you can use files from:
+https://github.com/ILLKX/Windows-VirtIO
+
+Enter `win.iso` as the `File Name:`
+
+
+Click `Download`. After downloading is complete, you can see the file size of `win.iso` on the current page, confirming it's in ISO format.
+
+
+### 2. Setting Up the Template
+Click `Create VM` in the top right corner of the page.
+
+In the `General` window, select `mypool` for `Resource Pool:`, enter `win` for `Name`, then click `Next`.
+
+
+In the `OS` window, select `win.iso` for `ISO image`. For `Guest OS`, select `Microsoft Windows` as the `Type` and choose the appropriate `Version` for your ISO. For example, if you downloaded Windows 2022, select `11/2022`, then click `Next`.
+
+
+In the `System` window, select `VirtIO-GPU` for `Graphic card`, `q35` for `Machine`, `VirtIO SCSI` for `SCSI Controller`, and `Default (SeaBIOS)` for `BIOS`, then click `Next`.
+
+
+In the `Disk` window, select `Write Back` for `Cache`, enter your desired disk size in `Disk size (GiB)` (generally not less than `20`), and choose the storage location in `Storage`. In this example, only the system disk `local` is available, so `local` is selected. Then click `Next`.
+
+
+In the `CPU` window, enter the number of cores needed in `Cores`, then click `Next`.
+
+
+In the `Memory` window, enter the desired memory size in `Memory (MiB)`, then click `Next`.
+
+
+In the `Network` window, select `vmbr1` for `Bridge`, `VirtIO (paravirtualized)` for `Model`, uncheck `Firewall`, then click `Next`.
+
+
+In the `Confirm` window, click `Finish`.
+
+
+### 3. Graphical Installation Configuration
+Click on the template you've set up on the left, click `Start` in the upper right corner to start the virtual machine, then click `Console` to enter the `VNC` interface and wait for the operating system to boot.
+
+
+In the VNC, click `Next`, then `Install now`, then `I don't have a product key`, check `Accept license`, click `Next`, and then select `Custom installation`.
+
+
+
+
+
+
+If the image comes with VirtIO drivers, you should be able to see the available system storage disk and its size. Select it and click `Next`.
+
+
+
+Wait for the system to install. It may restart automatically several times and could take more than 10 minutes.
+
+
+After installation is complete, you'll be asked to set a password during first login.
+
+
+Once setup is complete, there's a pop-up box on the left side of the NOVNC page. Click the first button, then follow the login prompt by pressing `Ctrl`+`Alt`+last button to enter the login page.
+
+### 4. Network Initialization
+Since the PVE is set up with a static network through this project, you need to manually modify the bound IP address after logging in, rather than using DHCP.
+
+Right-click in the bottom right corner of the desktop and select `Open Network and Internet settings`. In the settings page that appears, click `Change adapter options`.
+
+
+In the `Network Connections`, select `Ethernet` and click `Change settings of this connection`.
+
+
+In the popup window, select `Internet Protocol Version 4 (TCP/IPv4)` and click `Properties`.
+
+
+In the new dialog box, select `Use the following IP address` and enter:
+IP address(I): `172.16.1.xxx` (replace xxx with your desired IP, I used 100 for convenience as my vmid is 100)
+Subnet mask(U): `255.255.255.0`
+Default gateway(D): `172.16.1.1`
+
+Then select `Use the following DNS server addresses` and enter:
+```
+8.8.8.8
+144.144.144.144
+```
+
+Click OK in the bottom right corner, and make sure `Validate settings upon exit` is NOT checked.
+
+
+Click `OK` and `Yes` for any other dialog boxes, and your virtual machine will now have network connectivity.
\ No newline at end of file