MKLINK – Create and Use Links in Windows

MKLINK – Create and Use Links in Windows

How to Create and Use Links with MKLINK in Windows

   Information
As so many other things in computing, Windows Links seem more complicated to understand and use than what they really are in reality.

This tutorial will tell you how to create and use links using MKLINK to redirect system queries made to a local or network storage location to another location.

In this tutorial we will concentrate on the most important link type, a Directory Junction. A junction is a very practical way to customize your file handling and procedures.


A Link is basically nothing more than a shortcut. Its purpose is to get Windows to think that a file or folder which is physically located in folder Real on drive A is in fact in folder Fake on drive B by creating a link between B:\Fake (a link or junction) and A:\Real (a target folder). Opening the link for instance in Explorer shows contents of target, saving a document to link actually saves it on target.

As Windows now gets a query from user to open B:\Fake this query is sent to A:\Real. In reality the location B:\Fake does not exist but system answers this query as it was a real folder instead of just a symbolic link and presents user the contents of A:\Real as if it was contents of B:\Fake. Sounds complicated? Don’t worry, it’s quite easy in fact.



Part 1: What is a Link?

   Note
A Link in Windows is a virtual object that points to a real physical location. It can be compared to Windows desktop shortcut, doing essentially the same thing in redirecting user to a physical storage location.


A Link can be so called Hard Link linking one file to a target file, or a Soft Link linking a folder to a target folder. Soft Links are also called Symbolic Links. Third link type is Junction, basically a hard link but as hard links can only link files we need to use junctions to link folders.

If you are using Windows Vista or later you have most probably used links without ever noticing it. In Windows XP all user data was saved in a folder called C:\Documents and Settings (default name and location). Windows Vista changed this; instead of Documents and Settings the data was divided between two system folders, C:\Users for user specific application data and personal files and folders, and C:\ProgramData for all users shared application data. To allow backwards compatibility all Windows versions since Vista have a link C:\Documents and Settings with two target folders, ProgramData and Users.

You can check this by yourself by allowing protected system files and folders to be shown and opening C: drive on Explorer:
mklink_01.png
(Please notice, screenshots from Windows 8 but links work the same way on Windows 7. Highlighted with yellow = visible system folders created by Windows installation, red = hidden or protected system folders.)

If you try to open Documents and Settings you get an "Access Denied" message. It does not exist, there is no such folder on your C: drive but it is needed for legacy software.

An example: You want to install Microsoft Office XP on your Windows 7. As Office XP was published for Windows XP long before Vista it uses the XP system folder Documents and Settings to store user data. Vista and later Windows do no longer have this folder so a link is needed. Office XP setup thinks it is creating files and folders normally in Documents and Settings but actually your Windows 7 is lying ;) to Office XP setup, not telling it those files and folders are in fact created in Users and ProgramData. Office XP setup does not notice this deception, installation works and later when user works with Office XP it still thinks the Documents and Settings folder is there, never learning the fact that all queries to that folder are sent further and returned as if they really came from Documents and Settings.



Part 2: Working with Directory Junctions

(1.) Command Syntax

Links are created wit command mklink, short from Make Link. Typing mklink /? on Command Prompt you get the command syntax and options:
Code:
[B]MKLINK [/B][[/D] | [/H] | [/J]] [B]Link [/B][B]Target[/B]
 
        [B]/D[/B]      Creates a directory symbolic link.  Default is a file symbolic link.
       [B]/H[/B]      Creates a hard link instead of a symbolic link.
        [B]/J [/B]  Creates a Directory Junction.
        [B]Link    [/B]specifies the new symbolic link name.
        [B]Target  [/B]specifies the path (relative or absolute) that the new link refers to.

(2.) Use an Elevated Command Prompt

You must use elevated command prompt to work with links.

(3.) Create a Link or a Junction

Creating a directory junction D:\Docs with target E:\Users\Kari\Documents:
Code:
mklink /j D:\Docs E:\Users\Kari\Documents
Windows tells you clearly if the creating of junction has succeeded:
mklink_02.png
(4.) Main principles when creating a link or a junction

  1. A file or a folder with the name of the intended Link name may not exist. The link file or folder name must be free to use, not reserved by an existing file or folder. If the name is reserved you get an error message. My D: drive already has a folder Test, this is what happens when trying to create a junction with D:\Test (already an existing folder) as link and E:\Users as target:
    mklink_03.png
    Notice that command prompt is telling about a file already existing instead of a folder. This is because the system sees links as shortcuts (files) and not as folders.
  2. Target folder may but must not exist. If it does not exist at the time when a link is created it must be created before you can use the link:
    mklink_04.png
  3. Target can be another Link. Above in (3.) we created a junction D:\Docs with target E:\Users\Kari\Documents. Following command would now create a link C:\Docs with target D:\Docs:
    Code:
    mklink /j C:\Docs D:\Docs
    In fact Windows sees no difference if the target is a real physical folder location or just another link. In this case all queries to C:\Docs would be sent to D:\Docs which would send them further to E:\Users\Kari\Documents. If a user now opens C:\Docs in Explorer, it shows the contents of E:\Users\Kari\Documents:
    mklink_05.png
    Noticed something interesting in screenshot above? The target folder is called Documents but Explorer shows it as My Documents. This is because those "My ..." folders in your user profile folder are actually not real folders. They are directory links: My Videos is simply a link with target Videos and so on.
(5.) Remove or rename a link

Links and junctions can be renamed and removed as any real folders. System automatically modifies registry and sets the target to be the same for a renamed link as it was on the original link.

This is because even not really existing, the system handles links as if they were real existing folders. This is what Explorer shows when asked for Properties for our example junction D:\Docs:
mklink_07.png
Only way to really see it is in fact a junction is to get directory listing in command prompt:
mklink_06.png
The listing not only shows it is a junction but also its target folder.


Part 3: Practical Examples

A typical situation: You have bought a game that must be installed on root level folder C:\Games. Your C: drive is becoming full, so you decide to move the whole C:\Games folder to D:, delete now empty C:\Games (remember, link folder may not exist) and create a junction:
Code:
mklink /j C:\Games D:\Games
When launching the game it still assumes it is located on C: although you, me and Windows know better ;): it's "secretly" residing on D: but still using the old address on C:.

Another situation: You want to work with some pics from last Christmas, to edit them to be ready to be published on that website of yours. Pics are currently located in X:\Backups\Pictures\My Pictures\Holidays\Christmas 2012.

You can create a junction X:\Pics, and now whenever you want to work with those pics you just type X:\Pics to Run dialog to open the correct folder:
Code:
mklink /j X:\Pics "X:\Backups\Pictures\My Pictures\Holidays\Christmas 2012"
Notice that if a path contains spaces it must be set in between quotation marks as in above target path.

That's about it. Any feedback welcome.

Kari
 
Last edited:
I want to first thank everyone for this info, it has worked well, but not flawlessly, and maybe what I was trying to do is way beyond the scope of what symbolic links can do. I have 2 offices in different parts of the country. Each one has all the files I want to access on a NAS. I used a symbolic link to connect the folders on the NAS I wanted to sync w/ OneDrive. Seemed to work beautifully, Onedrive populated with the files off the NAS I wanted, and I could now access both NAS from onedrive. I quickly noticed that updating was spotty. I would update a file, and it would be the current file on the local NAS and seemingly on the onedrive, but on the remote computer it just wasn't updating even though onedrive said it was up to date. I really thought I had it. Anyone want to weigh in on a setting I may be able to change on the network or onedrive to get them to stay in sync?
 

My Computer My Computer

At a glance

Win10
Computer type
PC/Desktop
OS
Win10
mklink cannot find path

I'm trying to map my NAS to a local drive so that I can use Crashplan to back it up to a local USB drive. I was having trouble making mklink /j work (see symptom in attached screenshot) but then saw a forum post saying it worked with /d so I tried that.

The symptom changed to 'system cannot find the path specified' (also in attached screenshot). I can navigate to that path OK from Explorer. Why can't the system find it? Any help/suggestions much appreciated, TIA ... Greg
 

Attachments

  • Capture2.JPG
    Capture2.JPG
    27.4 KB · Views: 1,735

My Computer My Computer

At a glance

Win 7 Ultimate 32 bit
Computer type
PC/Desktop
OS
Win 7 Ultimate 32 bit
Hi Greg,

If H drive represents a mount point to a network location mapped by Windows Explorer, the Command Prompt will not be able to see it.

Before you can create the link there (assuming a NAS is anything like a workstation) you’ll need to net use the network location, authenticating with the builtin Administrator account for that machine (or one with similar privileges). After that you must pushd to the mapped location before you can execute mklink there.
 

My Computer My Computer

At a glance

Windows 10, Windows 8.1 Pro, Windows 7 Profes...
Computer type
PC/Desktop
OS
Windows 10, Windows 8.1 Pro, Windows 7 Professional, OS X El Capitan
Thank you for the reply Pyprohly.
The NAS is not like a work station, it is a Western Digital MyCloud disk connected directly to the router.
I'm not experienced in network tricks like these, so I would really appreciate any extra help to understand how to perform the procedures you mention, TIA ... Greg
 

My Computer My Computer

At a glance

Win 7 Ultimate 32 bit
Computer type
PC/Desktop
OS
Win 7 Ultimate 32 bit
Thanks for the Article good stuff!

I used this to get iTunes to use an external hard drive for backup and restore. Super useful in this case since otherwise iTunes will only let you run a 100GB backup on the local disk and restoring it wants to use another 100GB requiring 200GB C: drive space.

Using a junction solved the problem 100%
 

My Computer My Computer

At a glance

Windows 10 64-bitIntel i5 7700k
Computer type
PC/Desktop
OS
Windows 10 64-bit
CPU
Intel i5 7700k
Motherboard
Asus Z170-AR
Hard Drives
3TB 7200RPM RAID 5
Antivirus
ESET
Browser
Chrome/Firefox
Space in between folder names

i want to create a /H connection for cities skylines to my faster m.2SSD. So far so good but sadly one folder on the path is called "Colossal Order" with a space in between. Due to that it always gives me a syntax failure because it thnks that "Order/... is a complete diffrent path.

Is there a way to tell mklink that "Order/..." belongs to teh same adress?
 

Attachments

  • Screenshot (63).png
    Screenshot (63).png
    43.4 KB · Views: 89

My Computer My Computer

At a glance

Windows 10 64bitAMD Ryzen 5 160016GB crucial ballistix sport LT 2800mhzAMD RX580 8gb
Computer type
PC/Desktop
Computer Manufacturer/Model Number
built my by my own
OS
Windows 10 64bit
CPU
AMD Ryzen 5 1600
Motherboard
GA AB350 Gaming 3
Memory
16GB crucial ballistix sport LT 2800mhz
Graphics Card(s)
AMD RX580 8gb
Hard Drives
Kingston M.2 500gb SSD + SanDisk 500gb sata SSD
Antivirus
-
Browser
Edge
Hello Peter, and welcome to Seven Forums. :-)

Wrapping the paths in quotes like below should allow it to work with a space in the path.

mklink /j "D:\Docs" "E:\Users\Kari\Documents"
 

My Computer My Computer

At a glance

64-bit Windows 11 Pro for WorkstationsIntel i7-8700K OC'd to 5 GHz64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600...ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
Computer type
PC/Desktop
Computer Manufacturer/Model Number
Self built custom
OS
64-bit Windows 11 Pro for Workstations
CPU
Intel i7-8700K OC'd to 5 GHz
Motherboard
ASUS ROG Maximus XI Formula Z390
Memory
64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz
Graphics Card(s)
ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
Sound Card
Integrated
Monitor(s) Displays
2 x Samsung Odyssey G7 27"
Screen Resolution
2560x1440
Hard Drives
1TB Samsung 990 PRO M.2,
4TB Samsung 990 PRO PRO M.2,
TerraMaster F8 SSD Plus NAS
PSU
Seasonic Prime Titanium 850W
Case
Thermaltake Core P3
Cooling
Corsair Hydro H115i
Keyboard
Logitech wireless K800
Mouse
Logitech MX Master 4
Internet Speed
2 Gb/s Download and 100 Mb/s Upload
Antivirus
Malwarebyte Anti-Malware Premium
Browser
Google Chrome
Other Info
Logitech Z625 speaker system,
Logitech BRIO 4K Pro webcam,
HP Color LaserJet Pro MFP M477fdn,
APC SMART-UPS RT 1000 XL - SURT1000XLI,
Galaxy S23 Plus phone
Now it tells me access denied, but I am an admin...
 

My Computer My Computer

At a glance

Windows 10 64bitAMD Ryzen 5 160016GB crucial ballistix sport LT 2800mhzAMD RX580 8gb
Computer type
PC/Desktop
Computer Manufacturer/Model Number
built my by my own
OS
Windows 10 64bit
CPU
AMD Ryzen 5 1600
Motherboard
GA AB350 Gaming 3
Memory
16GB crucial ballistix sport LT 2800mhz
Graphics Card(s)
AMD RX580 8gb
Hard Drives
Kingston M.2 500gb SSD + SanDisk 500gb sata SSD
Antivirus
-
Browser
Edge

My Computer My Computer

At a glance

64-bit Windows 11 Pro for WorkstationsIntel i7-8700K OC'd to 5 GHz64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600...ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
Computer type
PC/Desktop
Computer Manufacturer/Model Number
Self built custom
OS
64-bit Windows 11 Pro for Workstations
CPU
Intel i7-8700K OC'd to 5 GHz
Motherboard
ASUS ROG Maximus XI Formula Z390
Memory
64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz
Graphics Card(s)
ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
Sound Card
Integrated
Monitor(s) Displays
2 x Samsung Odyssey G7 27"
Screen Resolution
2560x1440
Hard Drives
1TB Samsung 990 PRO M.2,
4TB Samsung 990 PRO PRO M.2,
TerraMaster F8 SSD Plus NAS
PSU
Seasonic Prime Titanium 850W
Case
Thermaltake Core P3
Cooling
Corsair Hydro H115i
Keyboard
Logitech wireless K800
Mouse
Logitech MX Master 4
Internet Speed
2 Gb/s Download and 100 Mb/s Upload
Antivirus
Malwarebyte Anti-Malware Premium
Browser
Google Chrome
Other Info
Logitech Z625 speaker system,
Logitech BRIO 4K Pro webcam,
HP Color LaserJet Pro MFP M477fdn,
APC SMART-UPS RT 1000 XL - SURT1000XLI,
Galaxy S23 Plus phone
I think so, it says C:\Windows\Systhem32\cmd.exe
 

My Computer My Computer

At a glance

Windows 10 64bitAMD Ryzen 5 160016GB crucial ballistix sport LT 2800mhzAMD RX580 8gb
Computer type
PC/Desktop
Computer Manufacturer/Model Number
built my by my own
OS
Windows 10 64bit
CPU
AMD Ryzen 5 1600
Motherboard
GA AB350 Gaming 3
Memory
16GB crucial ballistix sport LT 2800mhz
Graphics Card(s)
AMD RX580 8gb
Hard Drives
Kingston M.2 500gb SSD + SanDisk 500gb sata SSD
Antivirus
-
Browser
Edge
When you went to open the elevated command prompt, did you get a UAC prompt to approve?

I suppose go ahead and post a screenshot of the command prompt to see if anything may stand out.
 

My Computer My Computer

At a glance

64-bit Windows 11 Pro for WorkstationsIntel i7-8700K OC'd to 5 GHz64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600...ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
Computer type
PC/Desktop
Computer Manufacturer/Model Number
Self built custom
OS
64-bit Windows 11 Pro for Workstations
CPU
Intel i7-8700K OC'd to 5 GHz
Motherboard
ASUS ROG Maximus XI Formula Z390
Memory
64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz
Graphics Card(s)
ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
Sound Card
Integrated
Monitor(s) Displays
2 x Samsung Odyssey G7 27"
Screen Resolution
2560x1440
Hard Drives
1TB Samsung 990 PRO M.2,
4TB Samsung 990 PRO PRO M.2,
TerraMaster F8 SSD Plus NAS
PSU
Seasonic Prime Titanium 850W
Case
Thermaltake Core P3
Cooling
Corsair Hydro H115i
Keyboard
Logitech wireless K800
Mouse
Logitech MX Master 4
Internet Speed
2 Gb/s Download and 100 Mb/s Upload
Antivirus
Malwarebyte Anti-Malware Premium
Browser
Google Chrome
Other Info
Logitech Z625 speaker system,
Logitech BRIO 4K Pro webcam,
HP Color LaserJet Pro MFP M477fdn,
APC SMART-UPS RT 1000 XL - SURT1000XLI,
Galaxy S23 Plus phone
oh wait, it says C:\Users\Peter... but my properties menu looks like this, there is no such option like mentioned here Elevated Command Prompt
 

Attachments

  • Eingabe.PNG
    Eingabe.PNG
    14.3 KB · Views: 51
Last edited:

My Computer My Computer

At a glance

Windows 10 64bitAMD Ryzen 5 160016GB crucial ballistix sport LT 2800mhzAMD RX580 8gb
Computer type
PC/Desktop
Computer Manufacturer/Model Number
built my by my own
OS
Windows 10 64bit
CPU
AMD Ryzen 5 1600
Motherboard
GA AB350 Gaming 3
Memory
16GB crucial ballistix sport LT 2800mhz
Graphics Card(s)
AMD RX580 8gb
Hard Drives
Kingston M.2 500gb SSD + SanDisk 500gb sata SSD
Antivirus
-
Browser
Edge
Ah, ok. Yep, that wouldn't be an elevated command prompt.
 

My Computer My Computer

At a glance

64-bit Windows 11 Pro for WorkstationsIntel i7-8700K OC'd to 5 GHz64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600...ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
Computer type
PC/Desktop
Computer Manufacturer/Model Number
Self built custom
OS
64-bit Windows 11 Pro for Workstations
CPU
Intel i7-8700K OC'd to 5 GHz
Motherboard
ASUS ROG Maximus XI Formula Z390
Memory
64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz
Graphics Card(s)
ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
Sound Card
Integrated
Monitor(s) Displays
2 x Samsung Odyssey G7 27"
Screen Resolution
2560x1440
Hard Drives
1TB Samsung 990 PRO M.2,
4TB Samsung 990 PRO PRO M.2,
TerraMaster F8 SSD Plus NAS
PSU
Seasonic Prime Titanium 850W
Case
Thermaltake Core P3
Cooling
Corsair Hydro H115i
Keyboard
Logitech wireless K800
Mouse
Logitech MX Master 4
Internet Speed
2 Gb/s Download and 100 Mb/s Upload
Antivirus
Malwarebyte Anti-Malware Premium
Browser
Google Chrome
Other Info
Logitech Z625 speaker system,
Logitech BRIO 4K Pro webcam,
HP Color LaserJet Pro MFP M477fdn,
APC SMART-UPS RT 1000 XL - SURT1000XLI,
Galaxy S23 Plus phone
I'm having an issue with symbolic links showing up where I'd like to see them.



I create the links with statements like this in a bat file:

rmdir link-Files
mklink /d link-Files C:\data\stuff


I execute the bat file and the link(s) are created. It does work, somewhat. I can see the link named link-Files in "My Documents". But, I can't see the links at the root of the C:\ drive. I've tried executing the bat file in various places but it doesn't seem to make a difference as to where they get defined.



Am I missing some conceptual piece in here? Aren't these system level links? Shouldn't they be available in Explorer at the C:\ or Desktop level... or more specifically, everywhere? Is there some execution technique I need to make them appear more globally? If I have to hunt down to c:\users\me\My Documents then they defeat the purpose.
 

My Computer My Computer

At a glance

Windows 7 Ultimate 32 bit
Computer type
Laptop
OS
Windows 7 Ultimate 32 bit
Very quick comment to make sure this tutorial stays "live" ...


Had never run across mklink before but directing my Outlook (IMAP) pst files to my data drive using the /j qualifier worked great.



Thanx for clear/concise explanation.
 

My Computer My Computer

At a glance

Win7 Pro x64 SP1Intel i7-670016 gig (2x8)MSI GTX 1660 Super
Computer type
PC/Desktop
Computer Manufacturer/Model Number
Custom Build
OS
Win7 Pro x64 SP1
CPU
Intel i7-6700
Motherboard
Gigabyte Z270 HD3
Memory
16 gig (2x8)
Graphics Card(s)
MSI GTX 1660 Super
Monitor(s) Displays
AOC CQ27G2
Screen Resolution
1440p
Hard Drives
Internal:
Crucial MX500 500GB SATA SSD (OS/Apps)
WD10EZEX-00WN4A0 1TB (Data/Games)
WD10EZEX-00WN4A0 1TB (On-line backup/Testing)
External
WD 4TB USB3.1 EasyStore (off-line backup archive/"sandbox")
PSU
Cooler Master 650W Bronze
Case
Sharkoon BW9000-V tower housing
Cooling
Deep Cool Ice Blade
Internet Speed
fiber optic 2 res broadband
Antivirus
Kaspersky Free
Browser
Firefox
This was really informative, thank Kari.
 

My Computer My Computer

At a glance

Windows 7 Ultimate x64
Computer type
PC/Desktop
OS
Windows 7 Ultimate x64
seems to be working Sort of

created a link from the itunes default backup folder >"Q:\Apple Backups

I used

mklink /J "C:\Users\keith\AppData\Roaming\Apple Computer\MobileSync\Backup" "Q:\Apple Backups"

Didn't realize that Apple Computer AND Apple locations are in fact the same thing `Mirror each other `

mklink /J "C:\Users\keith\Apple\MobileSync\Backup" "Q:\Apple Backups"



I got the message "Junction created" both times

BUT Itunes is still saving the backup file to the BOTH default folder PLUS my new backup location

Any thoughts please ?

Many thanks
 
Last edited:

My Computer My Computer

At a glance

10 Pro
Computer type
PC/Desktop
OS
10 Pro
I got the message "Junction created" both times
BUT Itunes is still saving the backup file to the BOTH default folder PLUS my new backup location

Any thoughts please ?

How are you determining the files are being duplicated? I wonder if you may be misinterpreting what you think you're seeing.

If you look in the directory on your C: drive it will appear that the files are stored there, but they're not actually there, they're on the Q: drive as was specified by your link command. If you look at either of the two C:...Backups folders File Explorer will list files there, but that's because the junction makes File Explorer follow the tree across to Q:. It will show the files on Q:, even though it says they're on C:. (That's precisely the purpose of the junction feature.)

You can also look in File Explorer at the icons for the two C:...Backups folders. Do they have the tiny shortcut arrows over the icon's lower left corner? If so, there are actually no files there, they're being stored in the shortcut or junction location, not where File Explorer is pretending they are.

You can also do a dir listing from a command prompt window, which may help more clearly show where they're actually pointing to. For instance, I've done something similar with my Music folder, and a dir listing shows, in part:
Code:
12/03/2016  05:16 PM    <DIR>          Public Desktop
10/08/2019  12:25 AM    <DIR>          Public Documents
12/03/2016  10:40 PM    <DIR>          Public Downloads
10/08/2019  01:56 PM    <JUNCTION>     Public Movies [f:\movies]
10/08/2019  01:54 PM    <JUNCTION>     Public Music [f:\music]
12/03/2016  12:29 PM    <DIR>          Public Pictures
12/03/2016  12:29 AM    <DIR>          Public Videos


And lastly, right click and select Properties of the C: drive icon and compare the drive's used space both before and after creating the junction. There shouldn't be any change, which should help you convince yourself there are no actual "duplicate" files being added to C:.


Caveat emptor:

On a similar note, beware if you use programs to backup your C: drive. Some backup programs will follow the junction tree and include your Q: locations in the backup of the C: drive. That can potentially create an impossibly large backup wherein it ends up backing up more data than the C: drive can possibly hold. Just be aware that junctions can mess with backup strategies.
 

My Computer My Computer

At a glance

Windows 7/8.1/10 multibootIntel Core i7-770048GB (2x16GB Crucial DDR4-3200 + 2x8GB Hynix ...Intel HD630 + AMD Radeon R7 450 PCIe
Computer type
PC/Desktop
Computer Manufacturer/Model Number
Dell Optiplex 7050
OS
Windows 7/8.1/10 multiboot
CPU
Intel Core i7-7700
Motherboard
Dell, Intel Q270 chipset
Memory
48GB (2x16GB Crucial DDR4-3200 + 2x8GB Hynix DDR4-2400)
Graphics Card(s)
Intel HD630 + AMD Radeon R7 450 PCIe
Monitor(s) Displays
Asus VC279 (27")
Screen Resolution
1920x1080
Hard Drives
Toshiba M.2 NVMe (256GB),
Samsung 960 Evo (500GB),
WD Red Plus 80EFBX (8TB)
Back
Top