Compare commits
1 Commits
software-c
...
editorconf
Author | SHA1 | Date | |
---|---|---|---|
e87e854cf8 |
63
Fab/editorconfig.md
Normal file
63
Fab/editorconfig.md
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
---
|
||||||
|
type: "note"
|
||||||
|
created: "2024-04-16T19:09:30.884Z"
|
||||||
|
updated: "2024-04-17T09:09:36.234Z"
|
||||||
|
---
|
||||||
|
|
||||||
|
# editorconfig
|
||||||
|
|
||||||
|
- [editorconfig](https://editorconfig.org/)
|
||||||
|
- [editorconfig-how-to-autofix-all-files-in-a-project](https://stackoverflow.com/questions/39343031/editorconfig-how-to-autofix-all-files-in-a-project)
|
||||||
|
- [eclint-npmjs](https://www.npmjs.com/package/eclint)
|
||||||
|
- [eclint-github](https://github.com/jednano/eclint)
|
||||||
|
|
||||||
|
## eclint
|
||||||
|
|
||||||
|
```bash
|
||||||
|
l:
|
||||||
|
cd "L:\DevOps\Mesa_FI\OpenInsight"
|
||||||
|
echo node_modules >> .gitignore
|
||||||
|
echo [*] > .editorconfig
|
||||||
|
echo charset = utf-8 >> .editorconfig
|
||||||
|
echo end_of_line = crlf >> .editorconfig
|
||||||
|
echo indent_size = 4 >> .editorconfig
|
||||||
|
echo indent_style = space >> .editorconfig
|
||||||
|
echo insert_final_newline = true >> .editorconfig
|
||||||
|
echo tab_width = 4 >> .editorconfig
|
||||||
|
npm i -D prettier
|
||||||
|
npx prettier LSL2/STPROC/AC*.txt --check
|
||||||
|
# npx prettier fix **/*.txt --check
|
||||||
|
cls
|
||||||
|
npm i -D eclint
|
||||||
|
npx eclint fix LSL2/STPROC/AC*.txt
|
||||||
|
# npx eclint fix **/*.txt
|
||||||
|
REM
|
||||||
|
```
|
||||||
|
|
||||||
|
## dotnet
|
||||||
|
|
||||||
|
```bash
|
||||||
|
l:
|
||||||
|
cd "L:\DevOps\Mesa_FI\OI-Metrology\Server"
|
||||||
|
dotnet build
|
||||||
|
echo [*] > .editorconfig
|
||||||
|
echo end_of_line = crlf >> .editorconfig
|
||||||
|
echo indent_size = 4 >> .editorconfig
|
||||||
|
echo indent_style = space >> .editorconfig
|
||||||
|
echo insert_final_newline = false >> .editorconfig
|
||||||
|
echo tab_width = 4 >> .editorconfig
|
||||||
|
dotnet format whitespace
|
||||||
|
REM
|
||||||
|
```
|
||||||
|
|
||||||
|
- [dotnet-format](https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-format)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
l:
|
||||||
|
cd "L:\DevOps\Mesa_FI\OI-Metrology\Server"
|
||||||
|
dotnet build
|
||||||
|
del .editorconfig
|
||||||
|
notepad ../.editorconfig
|
||||||
|
dotnet format format --report .vscode --verbosity detailed --severity warn
|
||||||
|
REM
|
||||||
|
```
|
@ -1,46 +0,0 @@
|
|||||||
---
|
|
||||||
type: "topic"
|
|
||||||
created: 2023-11-16T16:15:53.000Z
|
|
||||||
updated: 2023-11-16T16:15:53.000Z
|
|
||||||
---
|
|
||||||
|
|
||||||
# Software Center
|
|
||||||
|
|
||||||
```regedit
|
|
||||||
HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{19E90D94-D3A6-41E7-B4FA-D157B74051B7}
|
|
||||||
```
|
|
||||||
|
|
||||||
```bash
|
|
||||||
C:\WINDOWS\TEMP\InfinityQSTEM\ "C:\Program Files (x86)\InstallShield Installation Information\{19E90D94-D3A6-41E7-B4FA-D157B74051B7}\setup.exe" -runfromtemp -l0x0409 -removeonly
|
|
||||||
MsiExec.exe /I{1C38ED67-8760-4E6F-9E6F-38C2A1B1EAB4}
|
|
||||||
cmtrace
|
|
||||||
C:\Windows\ccmcache\16\Wrapper\0
|
|
||||||
C:\ProgramData\ISCvX\Logs\SoftwareDistributionLogs\WrapperInstallations
|
|
||||||
cd "C:\Windows\ccmcache\16\MassData\0\Machine"
|
|
||||||
appwiz.cpl
|
|
||||||
MsiExec.exe /I{1C38ED67-8760-4E6F-9E6F-38C2A1B1EAB4}
|
|
||||||
```
|
|
||||||
|
|
||||||
```bash Administrator
|
|
||||||
cd "C:\Program Files\Infineon Technologies\Infineon Office Settings"
|
|
||||||
PsExec.exe -i -s cmd.exe
|
|
||||||
whoami
|
|
||||||
# nt authority\system
|
|
||||||
```
|
|
||||||
|
|
||||||
```bash PsExec.exe
|
|
||||||
cd "C:\Windows\ccmcache\16\Wrapper\0"
|
|
||||||
Wrapper.exe -uninstall -machine
|
|
||||||
```
|
|
||||||
|
|
||||||
- [ ] delete Z:\ProgramData\Microsoft\Windows\Start Menu\Programs\InfinityQS
|
|
||||||
|
|
||||||
```cmd as Administrator
|
|
||||||
control smscfgrc
|
|
||||||
```
|
|
||||||
|
|
||||||
```Actions
|
|
||||||
Application Deployment Evaluation Cycle
|
|
||||||
Software Update Deployment Evaluation Cycle
|
|
||||||
Windows Installer Source List Update Cycle
|
|
||||||
```
|
|
Reference in New Issue
Block a user