fix SoftNcRunner GM code normalization.

This commit is contained in:
2026-05-06 13:21:19 +08:00
parent 0fe9497552
commit 2f57932000
1238 changed files with 69405 additions and 22511 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

@@ -0,0 +1,121 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Delegated Authorization for Multi-Host Deployment | HiAPI-C# 2025 </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Delegated Authorization for Multi-Host Deployment | HiAPI-C# 2025 ">
<link rel="icon" href="../../img/HiAPI.favicon.ico">
<link rel="stylesheet" href="../../public/docfx.min.css">
<link rel="stylesheet" href="../../public/main.css">
<meta name="docfx:navrel" content="../../toc.html">
<meta name="docfx:tocrel" content="../toc.html">
<meta name="docfx:rel" content="../../">
<meta name="loc:inThisArticle" content="In this article">
<meta name="loc:searchResultsCount" content="{count} results for &quot;{query}&quot;">
<meta name="loc:searchNoResults" content="No results for &quot;{query}&quot;">
<meta name="loc:tocFilter" content="Filter by title">
<meta name="loc:nextArticle" content="Next">
<meta name="loc:prevArticle" content="Previous">
<meta name="loc:themeLight" content="Light">
<meta name="loc:themeDark" content="Dark">
<meta name="loc:themeAuto" content="Auto">
<meta name="loc:changeTheme" content="Change theme">
<meta name="loc:copy" content="Copy">
<meta name="loc:downloadPdf" content="Download PDF">
<script type="module" src="./../../public/docfx.min.js"></script>
<script>
const theme = localStorage.getItem('theme') || 'auto'
document.documentElement.setAttribute('data-bs-theme', theme === 'auto' ? (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light') : theme)
</script>
</head>
<body class="tex2jax_ignore" data-layout="" data-yaml-mime="">
<header class="bg-body border-bottom">
<nav id="autocollapse" class="navbar navbar-expand-md" role="navigation">
<div class="container-xxl flex-nowrap">
<a class="navbar-brand" href="../../index.html">
<img id="logo" class="svg" src="../../img/HiAPI.logo.png" alt="">
</a>
<button class="btn btn-lg d-md-none border-0" type="button" data-bs-toggle="collapse" data-bs-target="#navpanel" aria-controls="navpanel" aria-expanded="false" aria-label="Toggle navigation">
<i class="bi bi-three-dots"></i>
</button>
<div class="collapse navbar-collapse" id="navpanel">
<div id="navbar">
<form class="search" role="search" id="search">
<i class="bi bi-search"></i>
<input class="form-control" id="search-query" type="search" disabled placeholder="Search" autocomplete="off" aria-label="Search">
</form>
</div>
</div>
</div>
</nav>
</header>
<main class="container-xxl">
<div class="toc-offcanvas">
<div class="offcanvas-md offcanvas-start" tabindex="-1" id="tocOffcanvas" aria-labelledby="tocOffcanvasLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="tocOffcanvasLabel">Table of Contents</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" data-bs-target="#tocOffcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<nav class="toc" id="toc"></nav>
</div>
</div>
</div>
<div class="content">
<div class="actionbar">
<button class="btn btn-lg border-0 d-md-none" type="button" data-bs-toggle="offcanvas" data-bs-target="#tocOffcanvas" aria-controls="tocOffcanvas" aria-expanded="false" aria-label="Show table of contents">
<i class="bi bi-list"></i>
</button>
<nav id="breadcrumb"></nav>
</div>
<article data-uid="">
<h1 id="delegated-authorization-for-multi-host-deployment">Delegated Authorization for Multi-Host Deployment</h1>
<p>If multi-host licensing is enabled, download and extract <a href="https://superhightech.com.tw/download2/DelegateAuthorization.zip">DelegateAuthorization.zip</a>, then follow the two PDF guides inside to configure the license server and the authorized clients respectively.</p>
<p>The license server may be blocked by the Windows firewall. You can allow it through as shown below:</p>
<p><img src="delegate-auth-img/sentinel-firewall.jpg" alt="sentinel-firewall"></p>
<blockquote>
<p>When using a red license dongle, the <code>win_install.bat</code> script included in the archive must also be run for standalone operation to install the required license runtime.</p>
</blockquote>
</article>
<div class="contribution d-print-none">
</div>
<div class="next-article d-print-none border-top" id="nextArticle"></div>
</div>
<div class="affix">
<nav id="affix"></nav>
</div>
</main>
<div class="container-xxl search-results" id="search-results"></div>
<footer class="border-top text-secondary">
<div class="container-xxl">
<div class="flex-fill">
<span> Copyright © 2025 <a href='https://superhightech.com.tw'>Tech Coordinate</a>. All rights reserved. <a href='https://superhightech.com.tw'>超級高科技股份有限公司</a> © 2025 版權所有 </span>
</div>
</div>
</footer>
</body>
</html>
@@ -0,0 +1,63 @@
{
"DetailedErrors": true,
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://localhost:3301"
},
//"Https": {
// "Url": "https://xxxx.xxxx.xxxx:4301",
// "Certificate": {
// "Subject": "xxxx.xxxx.xxxx",
// "Store": "WebHosting",
// "AllowInvalid": true
// }
//},
"Grpc": {
"Protocols": "Http2",
"Url": "http://localhost:5301"
}
}
},
"HiNC": {
"CacheDbId": "Sub-1",
"DatabasePort": 28001,
"AdminDirectory": "../HiNC-Root",
"OptCoreNum": 0,
"Users": [
{
"Name": "admin",
"Pw": "00000",
"Role": "Admin",
"IsFixedUser": true
},
{
"Name": "worker",
"Pw": "111111",
"Role": "Collaborator",
"IsFixedUser": false
},
{
"Name": "guest",
"Pw": "22222",
"Role": "Guest",
"IsFixedUser": false
}
]
},
"LicenseManager": {
//Available Command: "DoNothing","AutoLicenseUpdate","GetC2V","GenV2C","ApplyV2C","WriteInfo"
"Command": "AutoLicenseUpdate",
"Server": {
"URI": "superhightech.com.tw",
"Port": 20201,
"ReceiveTimeout": 200
}
}
}
@@ -0,0 +1,63 @@
{
"DetailedErrors": true,
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://localhost:3302"
},
//"Https": {
// "Url": "https://xxxx.xxxx.xxxx:4302",
// "Certificate": {
// "Subject": "xxxx.xxxx.xxxx",
// "Store": "WebHosting",
// "AllowInvalid": true
// }
//},
"Grpc": {
"Protocols": "Http2",
"Url": "http://localhost:5302"
}
}
},
"HiNC": {
"CacheDbId": "Sub-2",
"DatabasePort": 28002,
"AdminDirectory": "../HiNC-Root",
"OptCoreNum": 0,
"Users": [
{
"Name": "admin",
"Pw": "00000",
"Role": "Admin",
"IsFixedUser": true
},
{
"Name": "worker",
"Pw": "111111",
"Role": "Collaborator",
"IsFixedUser": false
},
{
"Name": "guest",
"Pw": "22222",
"Role": "Guest",
"IsFixedUser": false
}
]
},
"LicenseManager": {
//Available Command: "DoNothing","AutoLicenseUpdate","GetC2V","GenV2C","ApplyV2C","WriteInfo"
"Command": "AutoLicenseUpdate",
"Server": {
"URI": "superhightech.com.tw",
"Port": 20201,
"ReceiveTimeout": 200
}
}
}
@@ -0,0 +1,131 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Single-Machine Multi-Station | HiAPI-C# 2025 </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Single-Machine Multi-Station | HiAPI-C# 2025 ">
<link rel="icon" href="../../img/HiAPI.favicon.ico">
<link rel="stylesheet" href="../../public/docfx.min.css">
<link rel="stylesheet" href="../../public/main.css">
<meta name="docfx:navrel" content="../../toc.html">
<meta name="docfx:tocrel" content="../toc.html">
<meta name="docfx:rel" content="../../">
<meta name="loc:inThisArticle" content="In this article">
<meta name="loc:searchResultsCount" content="{count} results for &quot;{query}&quot;">
<meta name="loc:searchNoResults" content="No results for &quot;{query}&quot;">
<meta name="loc:tocFilter" content="Filter by title">
<meta name="loc:nextArticle" content="Next">
<meta name="loc:prevArticle" content="Previous">
<meta name="loc:themeLight" content="Light">
<meta name="loc:themeDark" content="Dark">
<meta name="loc:themeAuto" content="Auto">
<meta name="loc:changeTheme" content="Change theme">
<meta name="loc:copy" content="Copy">
<meta name="loc:downloadPdf" content="Download PDF">
<script type="module" src="./../../public/docfx.min.js"></script>
<script>
const theme = localStorage.getItem('theme') || 'auto'
document.documentElement.setAttribute('data-bs-theme', theme === 'auto' ? (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light') : theme)
</script>
</head>
<body class="tex2jax_ignore" data-layout="" data-yaml-mime="">
<header class="bg-body border-bottom">
<nav id="autocollapse" class="navbar navbar-expand-md" role="navigation">
<div class="container-xxl flex-nowrap">
<a class="navbar-brand" href="../../index.html">
<img id="logo" class="svg" src="../../img/HiAPI.logo.png" alt="">
</a>
<button class="btn btn-lg d-md-none border-0" type="button" data-bs-toggle="collapse" data-bs-target="#navpanel" aria-controls="navpanel" aria-expanded="false" aria-label="Toggle navigation">
<i class="bi bi-three-dots"></i>
</button>
<div class="collapse navbar-collapse" id="navpanel">
<div id="navbar">
<form class="search" role="search" id="search">
<i class="bi bi-search"></i>
<input class="form-control" id="search-query" type="search" disabled placeholder="Search" autocomplete="off" aria-label="Search">
</form>
</div>
</div>
</div>
</nav>
</header>
<main class="container-xxl">
<div class="toc-offcanvas">
<div class="offcanvas-md offcanvas-start" tabindex="-1" id="tocOffcanvas" aria-labelledby="tocOffcanvasLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="tocOffcanvasLabel">Table of Contents</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" data-bs-target="#tocOffcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<nav class="toc" id="toc"></nav>
</div>
</div>
</div>
<div class="content">
<div class="actionbar">
<button class="btn btn-lg border-0 d-md-none" type="button" data-bs-toggle="offcanvas" data-bs-target="#tocOffcanvas" aria-controls="tocOffcanvas" aria-expanded="false" aria-label="Show table of contents">
<i class="bi bi-list"></i>
</button>
<nav id="breadcrumb"></nav>
</div>
<article data-uid="">
<h1 id="single-machine-multi-station">Single-Machine Multi-Station</h1>
<p>If multi-process licensing is enabled, you can use different <code>appsettings.&lt;profile-name&gt;.json</code> files to serve multiple processes. Each process can run a different project simultaneously.</p>
<p>The following fields must be unique across all <code>appsettings.&lt;profile-name&gt;.json</code> files on the same host:</p>
<ul>
<li><code>Endpoints</code></li>
<li><code>DatabasePort</code></li>
<li><code>CacheDbId</code></li>
</ul>
<p>Run the following command to launch a specific profile:</p>
<p><code>dotnet run HiNcServer.dll --environment &lt;profile-name&gt;</code></p>
<blockquote>
<p><strong>Configuration Examples</strong></p>
<ul>
<li><a href="multi-station-img/appsettings.Sub-1.json">appsettings.Sub-1.json</a></li>
<li><a href="multi-station-img/appsettings.Sub-2.json">appsettings.Sub-2.json</a></li>
</ul>
</blockquote>
</article>
<div class="contribution d-print-none">
</div>
<div class="next-article d-print-none border-top" id="nextArticle"></div>
</div>
<div class="affix">
<nav id="affix"></nav>
</div>
</main>
<div class="container-xxl search-results" id="search-results"></div>
<footer class="border-top text-secondary">
<div class="container-xxl">
<div class="flex-fill">
<span> Copyright © 2025 <a href='https://superhightech.com.tw'>Tech Coordinate</a>. All rights reserved. <a href='https://superhightech.com.tw'>超級高科技股份有限公司</a> © 2025 版權所有 </span>
</div>
</div>
</footer>
</body>
</html>
@@ -0,0 +1,131 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tutorial Videos | HiAPI-C# 2025 </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Tutorial Videos | HiAPI-C# 2025 ">
<link rel="icon" href="../../img/HiAPI.favicon.ico">
<link rel="stylesheet" href="../../public/docfx.min.css">
<link rel="stylesheet" href="../../public/main.css">
<meta name="docfx:navrel" content="../../toc.html">
<meta name="docfx:tocrel" content="../toc.html">
<meta name="docfx:rel" content="../../">
<meta name="loc:inThisArticle" content="In this article">
<meta name="loc:searchResultsCount" content="{count} results for &quot;{query}&quot;">
<meta name="loc:searchNoResults" content="No results for &quot;{query}&quot;">
<meta name="loc:tocFilter" content="Filter by title">
<meta name="loc:nextArticle" content="Next">
<meta name="loc:prevArticle" content="Previous">
<meta name="loc:themeLight" content="Light">
<meta name="loc:themeDark" content="Dark">
<meta name="loc:themeAuto" content="Auto">
<meta name="loc:changeTheme" content="Change theme">
<meta name="loc:copy" content="Copy">
<meta name="loc:downloadPdf" content="Download PDF">
<script type="module" src="./../../public/docfx.min.js"></script>
<script>
const theme = localStorage.getItem('theme') || 'auto'
document.documentElement.setAttribute('data-bs-theme', theme === 'auto' ? (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light') : theme)
</script>
</head>
<body class="tex2jax_ignore" data-layout="" data-yaml-mime="">
<header class="bg-body border-bottom">
<nav id="autocollapse" class="navbar navbar-expand-md" role="navigation">
<div class="container-xxl flex-nowrap">
<a class="navbar-brand" href="../../index.html">
<img id="logo" class="svg" src="../../img/HiAPI.logo.png" alt="">
</a>
<button class="btn btn-lg d-md-none border-0" type="button" data-bs-toggle="collapse" data-bs-target="#navpanel" aria-controls="navpanel" aria-expanded="false" aria-label="Toggle navigation">
<i class="bi bi-three-dots"></i>
</button>
<div class="collapse navbar-collapse" id="navpanel">
<div id="navbar">
<form class="search" role="search" id="search">
<i class="bi bi-search"></i>
<input class="form-control" id="search-query" type="search" disabled placeholder="Search" autocomplete="off" aria-label="Search">
</form>
</div>
</div>
</div>
</nav>
</header>
<main class="container-xxl">
<div class="toc-offcanvas">
<div class="offcanvas-md offcanvas-start" tabindex="-1" id="tocOffcanvas" aria-labelledby="tocOffcanvasLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="tocOffcanvasLabel">Table of Contents</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" data-bs-target="#tocOffcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<nav class="toc" id="toc"></nav>
</div>
</div>
</div>
<div class="content">
<div class="actionbar">
<button class="btn btn-lg border-0 d-md-none" type="button" data-bs-toggle="offcanvas" data-bs-target="#tocOffcanvas" aria-controls="tocOffcanvas" aria-expanded="false" aria-label="Show table of contents">
<i class="bi bi-list"></i>
</button>
<nav id="breadcrumb"></nav>
</div>
<article data-uid="">
<h1 id="tutorial-videos">Tutorial Videos</h1>
<h2 id="building-machine-structures-and-tools">Building Machine Structures and Tools</h2>
<ul>
<li><a href="https://superhightech.com.tw/download2/%E6%A9%9F%E6%A7%8B%E5%BB%BA%E6%A7%8B%E5%99%A8%E5%BB%BA%E7%AB%8B%E8%99%9B%E6%93%AC%E6%A9%9F%E5%BA%8A.mp4">https://superhightech.com.tw/download2/機構建構器建立虛擬機床.mp4</a></li>
<li><a href="https://superhightech.com.tw/download2/%E5%BB%BA%E7%AB%8B%E8%87%A5%E5%BC%8F%E6%A9%9F%E5%BA%8A.mp4">https://superhightech.com.tw/download2/建立臥式機床.mp4</a></li>
<li><a href="https://superhightech.com.tw/download2/%E5%88%80%E5%85%B7%E5%BB%BA%E7%AB%8B-%E9%8A%91%E5%89%8A%E8%88%87%E5%88%80%E6%8A%8A.mp4">https://superhightech.com.tw/download2/刀具建立-銑削與刀把.mp4</a></li>
</ul>
<h2 id="project-setup-and-execution">Project Setup and Execution</h2>
<ol>
<li><a href="https://superhightech.com.tw/download2/%E7%AF%84%E4%BE%8B%E5%B0%88%E6%A1%88%E8%A8%AD%E7%BD%AE%E8%AA%AA%E6%98%8E.mp4">https://superhightech.com.tw/download2/範例專案設置說明.mp4</a></li>
<li><a href="https://superhightech.com.tw/download2/%E7%AF%84%E4%BE%8B%E5%B0%88%E6%A1%88%E4%BB%BF%E7%9C%9F%E8%AA%AA%E6%98%8E.mp4">https://superhightech.com.tw/download2/範例專案仿真說明.mp4</a></li>
<li><a href="https://superhightech.com.tw/download2/%E5%BB%BA%E7%AB%8B%E5%B0%88%E6%A1%88.mp4">https://superhightech.com.tw/download2/建立專案.mp4</a></li>
</ol>
<blockquote>
<p><strong>Sample Project Download</strong>
<a href="https://superhightech-gitea.webredirect.org/HiNC-Deploy/DemoStandardPath/archive/master.zip">https://superhightech-gitea.webredirect.org/HiNC-Deploy/DemoStandardPath/archive/master.zip</a></p>
</blockquote>
</article>
<div class="contribution d-print-none">
</div>
<div class="next-article d-print-none border-top" id="nextArticle"></div>
</div>
<div class="affix">
<nav id="affix"></nav>
</div>
</main>
<div class="container-xxl search-results" id="search-results"></div>
<footer class="border-top text-secondary">
<div class="container-xxl">
<div class="flex-fill">
<span> Copyright © 2025 <a href='https://superhightech.com.tw'>Tech Coordinate</a>. All rights reserved. <a href='https://superhightech.com.tw'>超級高科技股份有限公司</a> © 2025 版權所有 </span>
</div>
</div>
</footer>
</body>
</html>
@@ -0,0 +1,162 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Getting Started with HiNC | HiAPI-C# 2025 </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Getting Started with HiNC | HiAPI-C# 2025 ">
<link rel="icon" href="../../img/HiAPI.favicon.ico">
<link rel="stylesheet" href="../../public/docfx.min.css">
<link rel="stylesheet" href="../../public/main.css">
<meta name="docfx:navrel" content="../../toc.html">
<meta name="docfx:tocrel" content="../toc.html">
<meta name="docfx:rel" content="../../">
<meta name="loc:inThisArticle" content="In this article">
<meta name="loc:searchResultsCount" content="{count} results for &quot;{query}&quot;">
<meta name="loc:searchNoResults" content="No results for &quot;{query}&quot;">
<meta name="loc:tocFilter" content="Filter by title">
<meta name="loc:nextArticle" content="Next">
<meta name="loc:prevArticle" content="Previous">
<meta name="loc:themeLight" content="Light">
<meta name="loc:themeDark" content="Dark">
<meta name="loc:themeAuto" content="Auto">
<meta name="loc:changeTheme" content="Change theme">
<meta name="loc:copy" content="Copy">
<meta name="loc:downloadPdf" content="Download PDF">
<script type="module" src="./../../public/docfx.min.js"></script>
<script>
const theme = localStorage.getItem('theme') || 'auto'
document.documentElement.setAttribute('data-bs-theme', theme === 'auto' ? (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light') : theme)
</script>
</head>
<body class="tex2jax_ignore" data-layout="" data-yaml-mime="">
<header class="bg-body border-bottom">
<nav id="autocollapse" class="navbar navbar-expand-md" role="navigation">
<div class="container-xxl flex-nowrap">
<a class="navbar-brand" href="../../index.html">
<img id="logo" class="svg" src="../../img/HiAPI.logo.png" alt="">
</a>
<button class="btn btn-lg d-md-none border-0" type="button" data-bs-toggle="collapse" data-bs-target="#navpanel" aria-controls="navpanel" aria-expanded="false" aria-label="Toggle navigation">
<i class="bi bi-three-dots"></i>
</button>
<div class="collapse navbar-collapse" id="navpanel">
<div id="navbar">
<form class="search" role="search" id="search">
<i class="bi bi-search"></i>
<input class="form-control" id="search-query" type="search" disabled placeholder="Search" autocomplete="off" aria-label="Search">
</form>
</div>
</div>
</div>
</nav>
</header>
<main class="container-xxl">
<div class="toc-offcanvas">
<div class="offcanvas-md offcanvas-start" tabindex="-1" id="tocOffcanvas" aria-labelledby="tocOffcanvasLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="tocOffcanvasLabel">Table of Contents</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" data-bs-target="#tocOffcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<nav class="toc" id="toc"></nav>
</div>
</div>
</div>
<div class="content">
<div class="actionbar">
<button class="btn btn-lg border-0 d-md-none" type="button" data-bs-toggle="offcanvas" data-bs-target="#tocOffcanvas" aria-controls="tocOffcanvas" aria-expanded="false" aria-label="Show table of contents">
<i class="bi bi-list"></i>
</button>
<nav id="breadcrumb"></nav>
</div>
<article data-uid="">
<h1 id="getting-started-with-hinc">Getting Started with HiNC</h1>
<p>This section covers how to set up and launch the HiNC system in different environments, including basic installation on Windows, single-machine multi-station configuration, multi-host authorization setup, and tutorial videos.</p>
<ul>
<li><a href="multi-station.html">Single-Machine Multi-Station Configuration</a></li>
<li><a href="delegate-auth.html">Multi-Host Delegated Authorization</a></li>
<li><a href="tutorial.html">Tutorial Videos</a></li>
</ul>
<h2 id="launching-hinc-on-windows">Launching HiNC on Windows</h2>
<ol>
<li><p>Download and extract the HiNC installation package from the official website:</p>
<p><a href="https://superhightech-gitea.webredirect.org/HiNC-Deploy/HiNC-Manager-Win/archive/master.zip">https://superhightech-gitea.webredirect.org/HiNC-Deploy/HiNC-Manager-Win/archive/master.zip</a></p>
</li>
<li><p>Plug in the HiNC license dongle and run <code>HiNC-loop-with-update.bat</code> from the extracted folder.</p>
<p>This script downloads or updates the HiNC software into the HiNC subfolder each time it runs.</p>
<p>After the first run, a HiNC subfolder will be created.</p>
<blockquote>
<p>Except for appsettings, all other file changes within the HiNC folder will be overwritten after an update.
If non-system modifications exist in the HiNC folder, the download or update may fail. In that case, manually delete the entire HiNC folder and run <code>HiNC-loop-with-update.bat</code> again.</p>
</blockquote>
<blockquote>
<p><a href="windows-img/startup.mp4">Demo video</a></p>
</blockquote>
<blockquote>
<p>If the default download mirror is too slow, you can first use <code>HiNC-update-gitcode.bat</code> to download from the gitcode mirror, then run <code>HiNC-loop-with-update.bat</code>.</p>
</blockquote>
<p>Inside the HiNC subfolder you will find the <code>appsettings.json</code> file, which is used to configure HiNC settings such as the web address, user credentials, etc. The following explains the default values.</p>
<p>By default, each time HiNC starts it connects to the license server to check for license updates. The default license update settings are shown below. To disable automatic license updates, change <code>AutoLicenseUpdate</code> to <code>DoNothing</code>.</p>
<pre><code>&quot;LicenseManager&quot;: {
//Available Command: &quot;DoNothing&quot;,&quot;AutoLicenseUpdate&quot;,&quot;GetC2V&quot;,&quot;GenV2C&quot;,&quot;ApplyV2C&quot;,&quot;WriteInfo&quot;
&quot;Command&quot;: &quot;AutoLicenseUpdate&quot;,
&quot;Server&quot;: {
&quot;URI&quot;: &quot;http://superhightech.com.tw:20201&quot;,
}
}
</code></pre>
<p>The <code>appsettings.json</code> file creates <code>../HiNC-Root</code> by default as the storage location for data and projects.</p>
<blockquote>
<p>If HiNC repeatedly shows long error messages on startup, the operating system may be outdated or not recently updated. Please install <code>Microsoft Visual C++</code>.</p>
</blockquote>
</li>
<li><p>Open a web browser and navigate to the default URL:
http://localhost:4330</p>
</li>
<li><p>Log in with the default credentials.
Username: <code>admin</code>
Password: <code>00000</code></p>
</li>
</ol>
</article>
<div class="contribution d-print-none">
</div>
<div class="next-article d-print-none border-top" id="nextArticle"></div>
</div>
<div class="affix">
<nav id="affix"></nav>
</div>
</main>
<div class="container-xxl search-results" id="search-results"></div>
<footer class="border-top text-secondary">
<div class="container-xxl">
<div class="flex-fill">
<span> Copyright © 2025 <a href='https://superhightech.com.tw'>Tech Coordinate</a>. All rights reserved. <a href='https://superhightech.com.tw'>超級高科技股份有限公司</a> © 2025 版權所有 </span>
</div>
</div>
</footer>
</body>
</html>