You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/debugger/specify-symbol-dot-pdb-and-source-files-in-the-visual-studio-debugger.md
+79-15Lines changed: 79 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,8 +87,8 @@ The debugger searches for symbol files in the following locations:
87
87
88
88
**Third-party symbol servers**: Third-party providers of Windows applications and libraries can provide access to symbol server on the internet.
89
89
90
-
> [!WARNING]
91
-
> If you use a symbol server other than the public Microsoft Symbol Servers, make sure that the symbol server and its path are trustworthy. Because symbol files can contain arbitrary executable code, you can be exposed to security threats.
90
+
> [!WARNING]
91
+
> If you use a symbol server other than the public Microsoft Symbol Servers, make sure that the symbol server and its path are trustworthy. Because symbol files can contain arbitrary executable code, you can be exposed to security threats.
92
92
93
93
## Configure location of symbol files and loading options
94
94
@@ -103,6 +103,11 @@ On the **Tools** > **Options** > **Debugging** > **Symbols** page, you can:
103
103
104
104
**To specify symbol locations and loading options:**
105
105
106
+
::: moniker range="= vs-2022"
107
+
> [!NOTE]
108
+
> These options were updated in Visual Studio 2022 Version 17.12 Preview 1.
109
+
::: moniker-end
110
+
106
111
1. In Visual Studio, open **Tools** > **Options** > **Debugging** > **Symbols** (or **Debug** > **Options** > **Symbols**).
107
112
108
113
2. Under **Symbol file (.pdb) locations**,
@@ -112,15 +117,15 @@ On the **Tools** > **Options** > **Debugging** > **Symbols** page, you can:
112
117
1. Select the **+** symbol in the toolbar.
113
118
1. Type the URL (http), network share, or local path of the symbol server or symbol location in the text field. Statement completion helps you find the correct format.
>Only the specified folder is searched. You must add entries for any subfolders that you want to search.
127
+
> [!NOTE]
128
+
> Only the specified folder is searched. You must add entries for any subfolders that you want to search.
124
129
125
130
- To add a new Azure DevOps Symbol Server location:
126
131
@@ -135,20 +140,79 @@ On the **Tools** > **Options** > **Debugging** > **Symbols** page, you can:
135
140
136
141
3. (Optional) To improve symbol loading performance, under **Cache symbols in this directory**, type a local folder path that symbol servers can copy symbols to.
137
142
138
-
> [!NOTE]
139
-
> Do not place the local symbol cache in a protected folder, like C:\Windows or a subfolder. Use a read-write folder instead.
143
+
> [!NOTE]
144
+
> Do not place the local symbol cache in a protected folder, like C:\Windows or a subfolder. Use a read-write folder instead.
140
145
141
-
> [!NOTE]
142
-
> For C++ projects, if you have the `_NT_SYMBOL_PATH` environment variable set, it will override the value set under **Cache symbols in this directory**.
146
+
> [!NOTE]
147
+
> If you have the `_NT_SYMBOL_PATH` environment variable set, it overrides the value set under **Cache symbols in this directory**.
143
148
144
149
4. Specify the modules that you want the debugger to load from the **Symbol file (.pdb) locations** when it starts.
145
150
151
+
::: moniker range=">= vs-2022"
152
+
153
+
- Select **Automatically choose what module symbols to search for** (recommended) to allow
154
+
Visual studio to decide what symbols to search for and load. By default, Visual Studio
155
+
automatically loads symbols that were built by your opened solution, and loads any
156
+
additional symbols that are needed to perform common debugging operations. This reduces
157
+
the number of files that must be searched for and loaded by Visual Studio, which
158
+
improves debugger performance. You can force additional symbols to load by clicking the
159
+
**Specify module filters** link.
160
+
161
+
- Select **Search for all module symbols unless excluded** to force Visual Studio to
162
+
load all symbols in your debugged process. This is not recommended because it may
163
+
slow down your debugging experience. If you select this option, you can force
164
+
Visual Studio to ignore certain symbols by clicking the **Specify module filters**
165
+
link.
166
+
167
+
::: moniker-end
168
+
::: moniker range="<= vs-2019"
169
+
146
170
- Select **Load all modules, unless excluded** (the default) to load all the symbols for all modules in the symbol file location, except modules you specifically exclude. To exclude certain modules, select **Specify excluded modules**, select the **+** icon, type the names of the modules to exclude, and select **OK**.
147
171
148
172
- To load only modules you specify from the symbol file locations, select **Load only specified modules**. Select **Specify included modules**, select the **+** icon, type the names of the modules to include, and then select **OK**. The symbol files for other modules are not loaded.
173
+
::: moniker-end
149
174
150
175
5. Select **OK**.
151
176
177
+
::: moniker range=">= vs-2022"
178
+
179
+
### Specify module filters
180
+
Both the **Automatically choose what module symbols to search for** and **Search for all
181
+
module symbols unless excluded** options allow you to have more fine control over what symbols
182
+
are searched for while debugging. Choose **Specify module filters** to fine-tune your experience.
183
+
184
+
By default, you see the following dialog when **Automatically choose what module symbols to search for** is selected:
185
+
186
+

187
+
188
+
You can add a module to the filter by using the '+' icon. Module filters support simple wild-card
189
+
matching. A '\*' matches any group of characters. For example '\*myproduct\*' will match files such
190
+
as 'myproduct.utilities.dll' and 'entrypoint.myproduct.exe', among others.
191
+
192
+
There are several additional options to further customize your experience:
193
+
194
+
-**Always load symbols located next to modules** instructs visual studio to load pdb files that
195
+
are stored in the file system beside their corresponding .dll or .exe files. This can be helpful,
196
+
for example, when attempting to debug a deployed web app.
197
+
198
+
-**Automatically load additional symbols when needed** instructs Visual Studio to search for
199
+
symbols to perform common debug actions, such as stepping, even if the module that you will be
200
+
stepping to is not in your project or in the modules filter. The way that searching is determined
201
+
might be affected by your [Just My Code](just-my-code.md) settings.
202
+
203
+
If you have selected **Search for all module symbols unless excluded**, then the module filter
204
+
dialog looks like this:
205
+
206
+

207
+
208
+
In this dialog, you can choose what modules you *do not* want Visual Studio to load symbols for.
209
+
In this scenario, Visual Studio attempts to load symbols for every module in your debugged
210
+
proces (including modules by third parties), unless you add a matching filter to exclude them.
211
+
The only other way that this behavior will be modified is by your [Just My Code](just-my-code.md)
212
+
settings.
213
+
214
+
::: moniker-end
215
+
152
216
## Other symbol options for debugging
153
217
154
218
You can select additional symbol options in **Tools** > **Options** > **Debugging** > **General** (or **Debug** > **Options** > **General**):
@@ -169,10 +233,10 @@ You can select additional symbol options in **Tools** > **Options** > **Debuggin
169
233
170
234
You can limit the commands that *srcsrv.dll* can execute from the app's *.pdb* file by listing the allowed commands in a file named *srcsrv.ini*. Place the *srcsrv.ini* file in the same folder as *srcsrv.dll* and *devenv.exe*.
171
235
172
-
>[!IMPORTANT]
173
-
>Arbitrary commands can be embedded in an app's *.pdb* file, so make sure to put only the commands you want to execute into a *srcsrv.ini* file. Any attempt to execute a command not in the *srcsvr.ini* file will cause a confirmation dialog box to appear. For more information, see [Security Warning: Debugger Must Execute Untrusted Command](../debugger/security-warning-debugger-must-execute-untrusted-command.md).
236
+
>[!IMPORTANT]
237
+
>Arbitrary commands can be embedded in an app's *.pdb* file, so make sure to put only the commands you want to execute into a *srcsrv.ini* file. Any attempt to execute a command not in the *srcsvr.ini* file will cause a confirmation dialog box to appear. For more information, see [Security Warning: Debugger Must Execute Untrusted Command](../debugger/security-warning-debugger-must-execute-untrusted-command.md).
174
238
>
175
-
>No validation is done on command parameters, so be careful with trusted commands. For example, if you listed *cmd.exe* in your *srcsrv.ini*, a malicious user might specify parameters on *cmd.exe* that would make it dangerous.
239
+
>No validation is performed on command parameters, so be careful with trusted commands. For example, if you listed *cmd.exe* in your *srcsrv.ini*, a malicious user might specify parameters on *cmd.exe* that would make it dangerous.
176
240
177
241
Select this item and the child items you want. **Allow source server for partial trust assemblies (Managed only)** and **Always run untrusted source server commands without prompting** can increase the security risks.
Copy file name to clipboardExpand all lines: subscriptions/personal-email-sign-ins.md
+27-10Lines changed: 27 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,22 +3,22 @@ title: Personal emails for Visual Studio subscriptions in VLSC
3
3
author: joseb-rdc
4
4
ms.author: amast
5
5
manager: shve
6
-
ms.date: 09/16/2024
6
+
ms.date: 10/11/2024
7
7
ms.topic: conceptual
8
-
description: Visual Studio Subscriptions – Why Am I Seeing Hotmail or Gmail Addresses for My Subscribers?
8
+
description: Visual Studio Subscriptions – Why do I see personal accounts for my subscribers?
9
9
---
10
10
11
-
# Visual Studio subscriptions – Why do I see personal accounts for my subscribers?
11
+
# Why do I see personal accounts for my subscribers?
12
12
13
-
After companies migrated from the Volume Licensing Service Center (VLSC) to the new Visual Studio [Subscriptions Admin Portal](https://manage.visualstudio.com), admins were surprised to find that the “Sign-in Email Address” for some subscribers shows a personal email address like Hotmail or Outlook.
13
+
After companies migrated from the Volume Licensing Service Center (VLSC) to the new Visual Studio [Subscriptions Admin Portal](https://manage.visualstudio.com), admins were surprised to find that the "Sign-in Email Address" for some subscribers shows a personal email address like Hotmail or Outlook.
14
14
15
15
## Cause
16
16
17
-
This scenario occurs due to sign-in processes that were associated with the legacy MSDN subscriber experience. Users were migrated from the Volume License Service Center (VLSC) to the Visual Studio Subscriptions Admin Portal without modifications. Admins might not know that users are using personal accounts to access their subscription benefits. Before the Visual Studio subscriber migrations, which were completed in 2016, there were two actions required to successfully use a Visual Studio Subscription:
18
-
1. The admin “assigned” the subscription to an individual subscriber, using their work or school email address.
19
-
2. The subscriber “activated” the subscription.
17
+
This scenario occurs due to sign-in processes that were associated with the legacy Microsoft Developer Network (MSDN) subscriber experience. Users were migrated from the Volume License Service Center (VLSC) to the Visual Studio Subscriptions Admin Portal without modifications. Admins might not know that users are using personal accounts to access their subscription benefits. Before the Visual Studio subscriber migrations, which were completed in 2016, there were two actions required to successfully use a Visual Studio Subscription:
18
+
1. The admin "assigned" the subscription to an individual subscriber, using their work or school email address.
19
+
2. The subscriber "activated" the subscription.
20
20
21
-
During the subscriber activation process, a Microsoft Account (MSA) was required to sign-in. If the subscriber didn’t attempt to make their work or school account (example: `[email protected]`) an MSA, they could create a new MSA or use an existing one. Use of a personal email resulted in their “Sign-in Email Address” being different than their “Assigned to Email Address."
21
+
During the subscriber activation process, a Microsoft Account (MSA) was required to sign-in. If the subscriber didn’t attempt to make their work or school account (example: '[email protected]') an MSA, they could create a new MSA or use an existing one. Use of a personal email resulted in their "Sign-in Email Address" being different than their "Assigned to Email Address."
22
22
23
23
> [!NOTE]
24
24
> The modern subscriber experience on [https://my.visualstudio.com](https://my.visualstudio.com?wt.mc_id=o~msft~docs) supports both Work/School and Microsoft Account (MSA) identity types.
@@ -41,12 +41,29 @@ You can also use the **Search Directory** to correct the errors or fill in missi
41
41
42
42
Next select on **Continue** which takes you to a list of the changes to take place. If you agree, select **Save** and the changes are made. Your subscriber will also get a message informing them of the change the next time they sign in to their subscription. Notice that only the two subscribers that were matched in the Microsoft Entra ID appear in this list. In our example, since Frederick didn't have a corresponding address in the Microsoft Entra ID, the Microsoft account (MSA) wasn't matched to a work account.
43
43
44
+
**What happens when I update a Visual Studio subscriber's sign-in address?**
45
+
44
46
> [!NOTE]
45
-
> When you edit the sign in email address this only updates the email used by the subscriber to sign in to their subscription on https://my.visualstudio.com. If the subscriber has already activated benefits such as Azure or Pluralsight using the other email address, they will need to continue to use those email addresses to access them. For any new benefits that they access, they should use the new email address.
47
+
> When you edit the sign in email address this updates the email used by the subscriber to sign in to their subscription on https://my.visualstudio.com. Subscribers can use the newly updated email address going forward when activating benefits. For previously activated benefits, continue reading below for more information about which email address a subscriber should use.
48
+
49
+
## Impact on Benefits
50
+
51
+
If you, the admin, changed the sign-in email address on a subscription, subscribers should use this new email address for any new benefit activations. Refer to the chart below for insights on any currently active benefits that might be impacted.
52
+
53
+
| Benefit Name | Use updated email address? | If subscriber hasn't activated the benefit yet | If subscriber activated with the previous sign-in email address | If the subscriber is using an alternate email address |
|**Power BI Pro**<br>**Microsoft 365 apps for Enterprise**<br>**PARASOFT Virtualize/SOAtest Professional Desktop**<br>**WhiteSource Bolt**<br>**DataCamp - 3-month subscription**<br>**CODE Magazine**| No | Use new sign-in email address to activate. | Continue using the old email address for access. | N/A |
56
+
|**Pluralsight**<br>**LinkedIn Learning**<br>**Dometrain**<br>**DevForge**| No | Access can be created using any email address. Once it's created, it will not change even if an admin updates the subscriber's sign in email. | Access can be created using any email address. Once it's created, it will not change even if an admin updates the subscriber's sign in email. | Access can be created using any email address. Once it's created, it will not change even if an admin updates the subscriber's sign in email. |
57
+
|**Visual Studio LIVE! Events discount**| No | No email address is needed. | No email address is needed. | No email address is needed. |
58
+
|**GitHub Enterprise**| No\*| This benefit is set up by the GitHub admin in your org. Subscribers should use the email address where their invitation was sent. | This benefit is set up by the GitHub admin in your org. Subscribers should use the email address where their invitation was sent. | This benefit is set up by the GitHub admin in your org. Subscribers should use the email address where their invitation was sent. |
59
+
|**Visual Studio IDE**<br>**Azure DevOps**<br>**Azure dev/test monthly credit**<br>**Azure Dev/Test PAYG subscription (Unlimited)**| Yes | Use new sign-in email address to activate. | Use the new sign-in email address to continue accessing. | Continue using alternate email address. |
60
+
|**TFS License**<br>**TFS CAL**<br>**Visual Studio App Center**<br>**Windows Developer Account**<br>**Microsoft 365 Developer**<br>**Microsoft R Server**<br>**Most Microsoft Server trials**<br>**Microsoft Office Pro Plus 2021, Project, Visio**<br>**Windows, Windows Server, Windows Embedded, SQL Server**<br>**SharePoint, Exchange, Dynamics & other MS**<br>**Technical Support**<br>**Developer Community Forums**<br>**Azure Community Forum**<br>**Online Concierge Chat**<br>**Code Search (included as Basic license)**<br>**Exploratory Testing (included in Basic license)**<br>**Azure Artifacts**<br>**C# Dev Kit for VS Code**<br>**Azure Test Plans**| Yes | Use new sign-in email address to activate. | Use the new sign-in email address to continue accessing. | N/A |
61
+
62
+
\**Note: This benefit is set up by the GitHub Admin. To determine the email address to use, get in touch with the GitHub Admin.*
46
63
47
64
## Support resources
48
65
49
-
For assistance with administration of Visual Studio Subscriptions, contact [Visual Studio subscriptions support](https://aka.ms/vsadminhelp).
66
+
For assistance with the administration of Visual Studio Subscriptions, contact [Visual Studio subscriptions support](https://aka.ms/vsadminhelp).
0 commit comments