윈도우 내PC를 열었을때 긴 로딩 시간 문제
윈도우 내 PC
를 열었는데, 로딩 시간이 길게 소요되는 문제의 원인은 여러가지 일 수 있습니다. 하지만, 당신이 네트워크 공유 폴더를 드라이브로 등록설정 한 상태이고, 등록한 네트워크 드라이브가 현재 접속이 불가능한 상태라면, 이것은 내 PC에 드라이브들이 표시되기 까지 오랜 시간이 걸리는 문제에 원인 일 가능성이 있습니다.
당연히, 접속이 불가능한 네트워크 드라이브에 마우스 우클릭 메뉴를 통해 접속해제 및 삭제를 할 수 있지만, 긴 로딩과 함께 이 방법조차 불가능할 가능성이 있습니다. 그래서 조금 복잡하지만 윈도우 명령 프롬프트에서 명령어를 통해 네트워크 드라이브를 삭제하는 방법을 소개하겠습니다.
명령 프롬프트 윈도우 열기
윈도우 + R
단축키를 눌러서 실행
윈도우를 엽니다. 그리고 cmd
를 입력해 명령 프롬프트를 엽니다.
네트워크 드라이브 조회 및 삭제
명령 프롬프트에 net use
명령어를 입력합니다. 입력하면 등록된 네트워크 드라이의 상태를 조회해 볼 수 있습니다. 저의 경우는 Z 드라이브가 Disconnected
상태로 표시되고 내PC의 긴 로딩 문제의 원인으로 예상이 됩니다.
1
2
3
4
5
6
7
8
9
10
11
C:\Windows\System32>net use
New connections will be remembered.
Status Local Remote Network
-------------------------------------------------------------------------------
OK R: \\pcname.ad.company.com\Data Microsoft Windows Network
Disconnected Z: \\192.168.0.20\username Microsoft Windows Network
The command completed successfully.
삭제를 원하는 드라이브 문자가 확인 되었다면 아래 명령어로 네트워크 드라이브를 삭제 할 수 있습니다.
- net use /delete <드라이브 문자:>
1
2
3
C:\Windows\System32>net use /delete Z:
Z: was deleted successfully.
저의 경우는 Z 드라이브를 삭제한 이후 내PC 긴 로딩 문제가 더 이상 재현되지 않았습니다.
부록
아래는 위에서 언급했던 net use
명령어로 사용 가능한 옵션의 상세입니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
C:\Windows\System32>net use /h
The syntax of this command is:
NET USE
[devicename | *] [\\computername\sharename[\volume] [password | *]]
[/USER:[domainname\]username]
[/USER:[dotted domain name\]username]
[/USER:[username@dotted domain name]
[/SMARTCARD]
[/SAVECRED]
[/REQUIREINTEGRITY]
[/REQUIREPRIVACY]
[/WRITETHROUGH]
[[/DELETE] | [/PERSISTENT:{YES | NO}]]
NET USE {devicename | *} [password | *] /HOME
NET USE [/PERSISTENT:{YES | NO}]
NET USE connects a computer to a shared resource or disconnects a
computer from a shared resource. When used without options, it lists
the computer's connections.
devicename Assigns a name to connect to the resource or specifies
the device to be disconnected. There are two kinds of
devicenames: disk drives (D: through Z:) and printers
(LPT1: through LPT3:). Type an asterisk instead of a
specific devicename to assign the next available
devicename.
\\computername Is the name of the computer controlling the shared
resource. If the computername contains blank characters,
enclose the double backslash (\\) and the computername
in quotation marks (" "). The computername may be from
1 to 15 characters long.
\sharename Is the network name of the shared resource.
\volume Specifies a NetWare volume on the server. You must have
Client Services for Netware (Windows Workstations)
or Gateway Service for Netware (Windows Server)
installed and running to connect to NetWare servers.
password Is the password needed to access the shared resource.
* Produces a prompt for the password. The password is
not displayed when you type it at the password prompt.
/USER Specifies a different username with which the connection
is made.
domainname Specifies another domain. If domain is omitted,
the current logged on domain is used.
username Specifies the username with which to logon.
/SMARTCARD Specifies that the connection is to use credentials on
a smart card.
/SAVECRED Specifies that the username and password are to be saved.
This switch is ignored unless the command prompts for username
and password.
/HOME Connects a user to their home directory.
/DELETE Cancels a network connection and removes the connection
from the list of persistent connections.
/REQUIREINTEGRITY
Requires a signed connection to the share. The operation will fail
if the provider does not support signed connections.
/REQUIREPRIVACY Requires an encrypted connection to the share. The operation will fail
if the provider does not support encrypted connections.
/PERSISTENT Controls the use of persistent network connections.
The default is the setting used last.
YES Saves connections as they are made, and restores
them at next logon.
NO Does not save the connection being made or subsequent
connections; existing connections will be restored at
next logon. Use the /DELETE switch to remove
persistent connections.
NET HELP command | MORE displays Help one screen at a time.
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.