전체 글: 340개의 글

Primo Ramdisk - 기존 이미지로 램디스크 만들기

Posted by Programmer™
2025. 2. 12. 17:57 카테고리 없음

 

알고보면 간단하지만 매번 설치할때마다 헛갈려서 기록해둡니다.

 

 

 

overwritten 이라는 말 때문에 식겁하는데 그냥 Yes 로 진행하면 됩니다.

 

 

 

 

 

Z: 드라이브의 내용을 살펴보면 기존의 내용이 그대로 있는 것을 확인할 수 있습니다.

 

CV1-8B128

Posted by Programmer™
2025. 2. 3. 00:23 Hardware

 

LiteOn 은 대만의 기업입니다. 과거에 CD-ROM 드라이브로 유명했던 기업입니다.

삼성 저가형 노트북에 장착된 제품인데 MLC 입니다. CV2 부터는 TLC 입니다.

 

 

 

아래는 라이트온 공식 홈페이지에 올라온 사양입니다.

 

CV1 M.2 Series

  • Consistent high performance
  • Accelerate application responsiveness
  • Increase productivity
  • Improve energy efficiency
  • M.2 form factor
  • Available Capacities: 128GB, 256GB, 512GB

Technical Specifications
Model Name CV1-8B64 CV1-8B128 CV1-8B256 CV1-8B512
Capacity 64 GB 128 GB 256 GB 512 GB
Performance
Sequential Read/Write1 520/80 MB/s 520/160 MB/s 520/360 MB/s 520/450 MB/s
4K Random Read/ Write1 35K/18K IOPS 60K/34K IOPS 80K/68K IOPS 80K/75K IOPS
Compatibility
Host Interface 6.0 Gb/s (Compatible to 1.5/3.0 Gb/s)

Form Factor
M.2 2280: 80mm x 22mm x 3.65mm
Reliability
MTBF2 1.5 million hours
Features
ECC BCH ECC 80 Random Bits/2KB
S.M.A.R.T Support
TRIM Command Support
Password Protection Support
Power Comsumption
DEVSLP 2 mW (0.002 W)
Typical (DIPM Enable)3 0.25 W
Environment
Operating Temperature 0 to 70°C
Non-operating Temperature -40 to 85°C
Power-on Ready 4 300 ms
Resume from DEVSLP 100 ms

 

Specifications subject to change without notice.

  1. Based on internal testing, performance, may vary depending on host device, OS and application
  2. UBER - Unrecovered Bit Error Rate
  3. MTBF - Mean Time Between Failures based on parts stress analysis
  4. Assumes that drive had normal shutdown process previously with STANDBY IMMEDIATE command.

 

DataSheet:

LiteOn.CV1.M.2.pdf
0.13MB

 

 

출처: https://www.liteonssd.com/en/PRODUCT/client-sata-ssd/m2-sata/cv1-series.html

Windows 10 기본 앱 제거

Posted by Programmer™
2025. 1. 31. 06:46 Windows 10

 

# 기본적으로 Windows Store를 제외한 모든 기본 Windows 10 앱을 제거합니다.

# 또는 첫 번째 줄에 주석을 달고 나서 특정 패키지의 주석 처리를 제거하면 해당 패키지를 제거할 수 있습니다.

 

 

Get-AppxPackage -AllUsers | where-object {$_.name -notlike "*store*"} | Remove-AppxPackage #Remove all except Store
 
#Get-AppxPackage -allusers *3dbuilder* | Remove-AppxPackage #3D Builder
#Get-AppxPackage -allusers *alarms* | Remove-AppxPackage #Alarms and Clock
#Get-AppxPackage -allusers *Appconnector* | Remove-AppxPackage #App Connector
#Get-AppxPackage -allusers *calculator* | Remove-AppxPackage #Calculator
#Get-AppxPackage -allusers *communications* | Remove-AppxPackage #Calendar and Mail
#Get-AppxPackage -allusers *camera* | Remove-AppxPackage #Camera
#Get-AppxPackage -allusers *CandyCrushSaga* | Remove-AppxPackage #Candy Crush Saga
#Get-AppxPackage -allusers *CandyCrushSodaSaga* | Remove-AppxPackage #Candy Crush Soda Saga
#Get-AppxPackage -allusers *Feedback* | Remove-AppxPackage #Feedback
#Get-AppxPackage -allusers *officehub* | Remove-AppxPackage #Get Office
#Get-AppxPackage -allusers *skypeapp* | Remove-AppxPackage #Get Skype
#Get-AppxPackage -allusers *getstarted* | Remove-AppxPackage #Get Started
#Get-AppxPackage -allusers *zunemusic* | Remove-AppxPackage #Groove Music
#Get-AppxPackage -allusers *InsiderHub* | Remove-AppxPackage #Insider Hub
#Get-AppxPackage -allusers *maps* | Remove-AppxPackage #Maps
#Get-AppxPackage -allusers *Messaging* | Remove-AppxPackage #Messaging and Skype
#Get-AppxPackage -allusers *solitairecollection* | Remove-AppxPackage #Microsoft Solitaire Collection
#Get-AppxPackage -allusers *ConnectivityStore* | Remove-AppxPackage #Microsoft WiFi
#Get-AppxPackage -allusers *bingfinance* | Remove-AppxPackage #Money
#Get-AppxPackage -allusers *zunevideo* | Remove-AppxPackage #Movies and TV
#Get-AppxPackage -allusers *bingnews* | Remove-AppxPackage #News
#Get-AppxPackage -allusers *onenote* | Remove-AppxPackage #OneNote
#Get-AppxPackage -allusers *people* | Remove-AppxPackage #People
#Get-AppxPackage -allusers *CommsPhone* | Remove-AppxPackage #Phone
#Get-AppxPackage -allusers *windowsphone* | Remove-AppxPackage #Phone Companion
#Get-AppxPackage -allusers *photos* | Remove-AppxPackage #Photos
#Get-AppxPackage -allusers *ReadingList* | Remove-AppxPackage #Reading List
#Get-AppxPackage -allusers *Scan* | Remove-AppxPackage #Scan
#Get-AppxPackage -allusers *windowsstore* | Remove-AppxPackage #Store - NOT RECOMMENDED
#Get-AppxPackage -allusers *Office.Sway* | Remove-AppxPackage #Sway
#Get-AppxPackage -allusers *bingsports* | Remove-AppxPackage #Sports
#Get-AppxPackage -allusers *Twitter* | Remove-AppxPackage #Twitter
#Get-AppxPackage -allusers *soundrecorder* | Remove-AppxPackage #Voice Recorder
#Get-AppxPackage -allusers *bingweather* | Remove-AppxPackage #Weather
#Get-AppxPackage -allusers *xbox* | Remove-AppxPackage #Xbox
#Get-AppxPackage -allusers *XboxOneSmartGlass* | Remove-AppxPackage #Xbox SmartGlass

 

 

 

 

"C:\Program Files\WindowsApps" 에 숨겨진 폴더로 저장되어 있습니다.

 

[주의] 한번 지우면 DISM.exe /Online /Cleanup-image /Restorehealth 명령으로는 복구되지 않습니다.

 

 

예를 들어 계산기 프로그램을 다시 설치할려면 PowerShell 을 관리자 권한으로 실행시킨 후, 아래 명령을 입력하면 됩니다.

Get-AppxPackage -allusers *windowscalculator* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}