task
stringlengths
24
71
input
stringlengths
8
2.38k
output
stringlengths
1
2.34k
options
list
pageTitle
stringlengths
4
140
outputColName
stringlengths
1
79
url
stringlengths
41
160
wdcFile
stringlengths
71
74
d0db7243_N__Specify_Section_Attributes___Attribute
[Character] D [Meaning] Marks the section as discardable [Attribute]
Discardable
[ [ "E", "x", "e", "c", "u", "t", "e" ], [ "R", "e", "a", "d" ], [ "W", "r", "i", "t", "e" ], [ "S", "h", "a", "r", "e", "d" ], [ "D", "i", "s", "c", "a", "r", "d", "a", "b", "l", "e" ], [ "C", "a", "c", "h", "e", "a", "b", "l", "e" ], [ "P", "a", "g", "e", "a", "b", "l", "e" ] ]
/SECTION (Specify Section Attributes)
Attribute
https://msdn.microsoft.com/en-US/library/sf9b18xk(v=vs.80).aspx
21/1438042988840.31_20150728002308-00144-ip-10-236-191-2_865106617_1.json
d0db7243_N__Specify_Section_Attributes___Attribute
[Character] K [Meaning] Marks the section as not cacheable [Attribute]
Cacheable
[ [ "E", "x", "e", "c", "u", "t", "e" ], [ "R", "e", "a", "d" ], [ "W", "r", "i", "t", "e" ], [ "S", "h", "a", "r", "e", "d" ], [ "D", "i", "s", "c", "a", "r", "d", "a", "b", "l", "e" ], [ "C", "a", "c", "h", "e", "a", "b", "l", "e" ], [ "P", "a", "g", "e", "a", "b", "l", "e" ] ]
/SECTION (Specify Section Attributes)
Attribute
https://msdn.microsoft.com/en-US/library/sf9b18xk(v=vs.80).aspx
21/1438042988840.31_20150728002308-00144-ip-10-236-191-2_865106617_1.json
d0db7243_N__Specify_Section_Attributes___Attribute
[Character] P [Meaning] Marks the section as not pageable [Attribute]
Pageable
[ [ "E", "x", "e", "c", "u", "t", "e" ], [ "R", "e", "a", "d" ], [ "W", "r", "i", "t", "e" ], [ "S", "h", "a", "r", "e", "d" ], [ "D", "i", "s", "c", "a", "r", "d", "a", "b", "l", "e" ], [ "C", "a", "c", "h", "e", "a", "b", "l", "e" ], [ "P", "a", "g", "e", "a", "b", "l", "e" ] ]
/SECTION (Specify Section Attributes)
Attribute
https://msdn.microsoft.com/en-US/library/sf9b18xk(v=vs.80).aspx
21/1438042988840.31_20150728002308-00144-ip-10-236-191-2_865106617_1.json
7f46d656_ver_Azure_SQL_DB__AccessToSQL___Issue
[Cause and Resolution] Cause: Some queries might be slow after upsizing for the following reasons: The application depends on functions that do not exist in SQL Server or SQL Azure. This causes Jet to pull down tables locally to run a SELECT query. Queries that update or delete many rows are sent by Jet as a parameterized query for each row. Resolution: Convert the slow-running queries to pass-through queries, stored procedures, or views. Converting to pass-through queries will have the following issues: Pass-through queries cannot be modified. Modifying the query result or adding new records must be done in an alternative way, such as by having explicit Modify or Add buttons on your form that is bound to the query. Some queries require user input, but pass-through queries do not support user input. User input can be obtained by Visual Basic for Applications (VBA) code that prompts for parameters, or by a form that is used as an input control. In both cases, the VBA code submits the query with the user input to the server. [Issue]
Slow performance with linked tables.
[]
Linking Access Applications to SQL Server/Azure SQL DB (AccessToSQL)
Issue
https://msdn.microsoft.com/en-us/library/hh313055(v=sql.110).aspx
21/1438042988840.31_20150728002308-00069-ip-10-236-191-2_889070178_3.json
7f46d656_ver_Azure_SQL_DB__AccessToSQL___Issue
[Cause and Resolution] Cause: After calling RecordSet.AddNew in Jet, the auto increment column is available before the record is updated. This is not true in SQL Server or SQL Azure. The new value of the identity column new value is available only after saving the new record. Resolution: Run the following Visual Basic for Applications (VBA) code before accessing the identity field: Copy Recordset.Update Recordset.Move 0, Recordset.LastModified [Issue]
Auto-increment columns are not updated until the record is updated.
[]
Linking Access Applications to SQL Server/Azure SQL DB (AccessToSQL)
Issue
https://msdn.microsoft.com/en-us/library/hh313055(v=sql.110).aspx
21/1438042988840.31_20150728002308-00069-ip-10-236-191-2_889070178_3.json
7f46d656_ver_Azure_SQL_DB__AccessToSQL___Issue
[Cause and Resolution] Cause: When you add a record to a SQL Server or SQL Azure table by using VBA, if the table's unique index field has a default value, and you do not assign a value to that field, the new record does not appear until you reopen the table in SQL Server or SQL Azure. If you try to obtain a value from the new record, you receive the following error message: Run-time error '3167' Record is deleted. Resolution: When you open the SQL Server or SQL Azure table by using VBA code, include the dbSeeChanges option, as in the following example: Set rs = db.OpenRecordset("TestTable", dbOpenDynaset, dbSeeChanges) [Issue]
New records are not available.
[]
Linking Access Applications to SQL Server/Azure SQL DB (AccessToSQL)
Issue
https://msdn.microsoft.com/en-us/library/hh313055(v=sql.110).aspx
21/1438042988840.31_20150728002308-00069-ip-10-236-191-2_889070178_3.json
7f46d656_ver_Azure_SQL_DB__AccessToSQL___Issue
[Cause and Resolution] Cause: If a query does not include all columns that are included in a unique index, you cannot add new values by using the query. Resolution: Ensure that all columns that are included in at least one unique index are part of the query. [Issue]
After migration, some queries will not let the user add a new record.
[]
Linking Access Applications to SQL Server/Azure SQL DB (AccessToSQL)
Issue
https://msdn.microsoft.com/en-us/library/hh313055(v=sql.110).aspx
21/1438042988840.31_20150728002308-00069-ip-10-236-191-2_889070178_3.json
7f46d656_ver_Azure_SQL_DB__AccessToSQL___Issue
[Cause and Resolution] Cause: After migrating data and linking tables, the user cannot modify the schema of a table in Access. Resolution: Modify the table schema by using SQL Server Management Studio, and then update the link in Access. [Issue]
You cannot modify a linked table schema with Access.
[]
Linking Access Applications to SQL Server/Azure SQL DB (AccessToSQL)
Issue
https://msdn.microsoft.com/en-us/library/hh313055(v=sql.110).aspx
21/1438042988840.31_20150728002308-00069-ip-10-236-191-2_889070178_3.json
7f46d656_ver_Azure_SQL_DB__AccessToSQL___Issue
[Cause and Resolution] Cause: After migrating data, hyperlinks in columns lose their functionality and become simple nvarchar(max) columns. Resolution: None. [Issue]
Hyperlink functionality is lost after migrating data.
[]
Linking Access Applications to SQL Server/Azure SQL DB (AccessToSQL)
Issue
https://msdn.microsoft.com/en-us/library/hh313055(v=sql.110).aspx
21/1438042988840.31_20150728002308-00069-ip-10-236-191-2_889070178_3.json
7f46d656_ver_Azure_SQL_DB__AccessToSQL___Issue
[Cause and Resolution] Cause: If you later update your SQL Server or SQL Azure tables to contain data types that are not supported by Access, you cannot open the table in Access. Resolution: You can define an Access query that returns only those rows with supported data types. [Issue]
Some SQL Server data types are not supported by Access.
[]
Linking Access Applications to SQL Server/Azure SQL DB (AccessToSQL)
Issue
https://msdn.microsoft.com/en-us/library/hh313055(v=sql.110).aspx
21/1438042988840.31_20150728002308-00069-ip-10-236-191-2_889070178_3.json
2ee15928_WM_PRINT_message__Windows___Value
[Meaning] Draws the window only if it is visible. [Value]
PRF_CHECKVISIBLE
[ [ "P", "R", "F", "_", "C", "H", "E", "C", "K", "V", "I", "S", "I", "B", "L", "E" ], [ "P", "R", "F", "_", "C", "H", "I", "L", "D", "R", "E", "N" ], [ "P", "R", "F", "_", "C", "L", "I", "E", "N", "T" ], [ "P", "R", "F", "_", "E", "R", "A", "S", "E", "B", "K", "G", "N", "D" ], [ "P", "R", "F", "_", "N", "O", "N", "C", "L", "I", "E", "N", "T" ], [ "P", "R", "F", "_", "O", "W", "N", "E", "D" ] ]
WM_PRINT message (Windows)
Value
https://msdn.microsoft.com/en-us/library/windows/desktop/dd145216(v=vs.85).aspx
21/1438042988840.31_20150728002308-00061-ip-10-236-191-2_884232789_0.json
2ee15928_WM_PRINT_message__Windows___Value
[Meaning] Draws all visible children windows. [Value]
PRF_CHILDREN
[ [ "P", "R", "F", "_", "C", "H", "E", "C", "K", "V", "I", "S", "I", "B", "L", "E" ], [ "P", "R", "F", "_", "C", "H", "I", "L", "D", "R", "E", "N" ], [ "P", "R", "F", "_", "C", "L", "I", "E", "N", "T" ], [ "P", "R", "F", "_", "E", "R", "A", "S", "E", "B", "K", "G", "N", "D" ], [ "P", "R", "F", "_", "N", "O", "N", "C", "L", "I", "E", "N", "T" ], [ "P", "R", "F", "_", "O", "W", "N", "E", "D" ] ]
WM_PRINT message (Windows)
Value
https://msdn.microsoft.com/en-us/library/windows/desktop/dd145216(v=vs.85).aspx
21/1438042988840.31_20150728002308-00061-ip-10-236-191-2_884232789_0.json
2ee15928_WM_PRINT_message__Windows___Value
[Meaning] Draws the client area of the window. [Value]
PRF_CLIENT
[ [ "P", "R", "F", "_", "C", "H", "E", "C", "K", "V", "I", "S", "I", "B", "L", "E" ], [ "P", "R", "F", "_", "C", "H", "I", "L", "D", "R", "E", "N" ], [ "P", "R", "F", "_", "C", "L", "I", "E", "N", "T" ], [ "P", "R", "F", "_", "E", "R", "A", "S", "E", "B", "K", "G", "N", "D" ], [ "P", "R", "F", "_", "N", "O", "N", "C", "L", "I", "E", "N", "T" ], [ "P", "R", "F", "_", "O", "W", "N", "E", "D" ] ]
WM_PRINT message (Windows)
Value
https://msdn.microsoft.com/en-us/library/windows/desktop/dd145216(v=vs.85).aspx
21/1438042988840.31_20150728002308-00061-ip-10-236-191-2_884232789_0.json
2ee15928_WM_PRINT_message__Windows___Value
[Meaning] Erases the background before drawing the window. [Value]
PRF_ERASEBKGND
[ [ "P", "R", "F", "_", "C", "H", "E", "C", "K", "V", "I", "S", "I", "B", "L", "E" ], [ "P", "R", "F", "_", "C", "H", "I", "L", "D", "R", "E", "N" ], [ "P", "R", "F", "_", "C", "L", "I", "E", "N", "T" ], [ "P", "R", "F", "_", "E", "R", "A", "S", "E", "B", "K", "G", "N", "D" ], [ "P", "R", "F", "_", "N", "O", "N", "C", "L", "I", "E", "N", "T" ], [ "P", "R", "F", "_", "O", "W", "N", "E", "D" ] ]
WM_PRINT message (Windows)
Value
https://msdn.microsoft.com/en-us/library/windows/desktop/dd145216(v=vs.85).aspx
21/1438042988840.31_20150728002308-00061-ip-10-236-191-2_884232789_0.json
2ee15928_WM_PRINT_message__Windows___Value
[Meaning] Draws the nonclient area of the window. [Value]
PRF_NONCLIENT
[ [ "P", "R", "F", "_", "C", "H", "E", "C", "K", "V", "I", "S", "I", "B", "L", "E" ], [ "P", "R", "F", "_", "C", "H", "I", "L", "D", "R", "E", "N" ], [ "P", "R", "F", "_", "C", "L", "I", "E", "N", "T" ], [ "P", "R", "F", "_", "E", "R", "A", "S", "E", "B", "K", "G", "N", "D" ], [ "P", "R", "F", "_", "N", "O", "N", "C", "L", "I", "E", "N", "T" ], [ "P", "R", "F", "_", "O", "W", "N", "E", "D" ] ]
WM_PRINT message (Windows)
Value
https://msdn.microsoft.com/en-us/library/windows/desktop/dd145216(v=vs.85).aspx
21/1438042988840.31_20150728002308-00061-ip-10-236-191-2_884232789_0.json
2ee15928_WM_PRINT_message__Windows___Value
[Meaning] Draws all owned windows. [Value]
PRF_OWNED
[ [ "P", "R", "F", "_", "C", "H", "E", "C", "K", "V", "I", "S", "I", "B", "L", "E" ], [ "P", "R", "F", "_", "C", "H", "I", "L", "D", "R", "E", "N" ], [ "P", "R", "F", "_", "C", "L", "I", "E", "N", "T" ], [ "P", "R", "F", "_", "E", "R", "A", "S", "E", "B", "K", "G", "N", "D" ], [ "P", "R", "F", "_", "N", "O", "N", "C", "L", "I", "E", "N", "T" ], [ "P", "R", "F", "_", "O", "W", "N", "E", "D" ] ]
WM_PRINT message (Windows)
Value
https://msdn.microsoft.com/en-us/library/windows/desktop/dd145216(v=vs.85).aspx
21/1438042988840.31_20150728002308-00061-ip-10-236-191-2_884232789_0.json
aeb755ad_n_Class__System_Globalization___Description
[Name] CultureNotFoundException() [Description]
Initializes a new instance of the CultureNotFoundException class with its message string set to a system-supplied message.
[]
CultureNotFoundException Class (System.Globalization)
Description
https://msdn.microsoft.com/en-us/library/system.globalization.culturenotfoundexception.aspx
21/1438042988840.31_20150728002308-00249-ip-10-236-191-2_887381952_0.json
aeb755ad_n_Class__System_Globalization___Description
[Name] CultureNotFoundException(String) [Description]
Initializes a new instance of the CultureNotFoundException class with the specified error message.
[]
CultureNotFoundException Class (System.Globalization)
Description
https://msdn.microsoft.com/en-us/library/system.globalization.culturenotfoundexception.aspx
21/1438042988840.31_20150728002308-00249-ip-10-236-191-2_887381952_0.json
aeb755ad_n_Class__System_Globalization___Description
[Name] CultureNotFoundException(SerializationInfo, StreamingContext) [Description]
Initializes a new instance of the CultureNotFoundException class using the specified serialization data and context.
[]
CultureNotFoundException Class (System.Globalization)
Description
https://msdn.microsoft.com/en-us/library/system.globalization.culturenotfoundexception.aspx
21/1438042988840.31_20150728002308-00249-ip-10-236-191-2_887381952_0.json
aeb755ad_n_Class__System_Globalization___Description
[Name] CultureNotFoundException(String, Exception) [Description]
Initializes a new instance of the CultureNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.
[]
CultureNotFoundException Class (System.Globalization)
Description
https://msdn.microsoft.com/en-us/library/system.globalization.culturenotfoundexception.aspx
21/1438042988840.31_20150728002308-00249-ip-10-236-191-2_887381952_0.json
aeb755ad_n_Class__System_Globalization___Description
[Name] CultureNotFoundException(String, String) [Description]
Initializes a new instance of the CultureNotFoundException class with a specified error message and the name of the parameter that is the cause this exception.
[]
CultureNotFoundException Class (System.Globalization)
Description
https://msdn.microsoft.com/en-us/library/system.globalization.culturenotfoundexception.aspx
21/1438042988840.31_20150728002308-00249-ip-10-236-191-2_887381952_0.json
aeb755ad_n_Class__System_Globalization___Description
[Name] CultureNotFoundException(String, Int32, Exception) [Description]
Initializes a new instance of the CultureNotFoundException class with a specified error message, the invalid Culture ID, and a reference to the inner exception that is the cause of this exception.
[]
CultureNotFoundException Class (System.Globalization)
Description
https://msdn.microsoft.com/en-us/library/system.globalization.culturenotfoundexception.aspx
21/1438042988840.31_20150728002308-00249-ip-10-236-191-2_887381952_0.json
aeb755ad_n_Class__System_Globalization___Description
[Name] CultureNotFoundException(String, Int32, String) [Description]
Initializes a new instance of the CultureNotFoundException class with a specified error message, the invalid Culture ID, and the name of the parameter that is the cause this exception.
[]
CultureNotFoundException Class (System.Globalization)
Description
https://msdn.microsoft.com/en-us/library/system.globalization.culturenotfoundexception.aspx
21/1438042988840.31_20150728002308-00249-ip-10-236-191-2_887381952_0.json
aeb755ad_n_Class__System_Globalization___Description
[Name] CultureNotFoundException(String, String, Exception) [Description]
Initializes a new instance of the CultureNotFoundException class with a specified error message, the invalid Culture Name, and a reference to the inner exception that is the cause of this exception.
[]
CultureNotFoundException Class (System.Globalization)
Description
https://msdn.microsoft.com/en-us/library/system.globalization.culturenotfoundexception.aspx
21/1438042988840.31_20150728002308-00249-ip-10-236-191-2_887381952_0.json
aeb755ad_n_Class__System_Globalization___Description
[Name] CultureNotFoundException(String, String, String) [Description]
Initializes a new instance of the CultureNotFoundException class with a specified error message, the invalid Culture Name, and the name of the parameter that is the cause this exception.
[]
CultureNotFoundException Class (System.Globalization)
Description
https://msdn.microsoft.com/en-us/library/system.globalization.culturenotfoundexception.aspx
21/1438042988840.31_20150728002308-00249-ip-10-236-191-2_887381952_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] ControlSize [Description]
Gets or sets the size of the button.
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] Description [Description]
Gets or sets the text that appears on this button in a menu when the ItemSize property of the menu is set to Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge.
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] Enabled [Description]
Gets or sets a value that indicates whether this RibbonControl is enabled. (Inherited from RibbonControl.)
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] Id [Description]
Gets a string that Microsoft Office uses to identify this RibbonControl object. (Inherited from RibbonControl.)
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] Image [Description]
Gets or sets the image that is displayed on the button.
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] ImageName [Description]
Gets or sets the name that you can use to identify the button in the LoadImage event handler.
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] KeyTip [Description]
Gets or sets the keyboard shortcut of the button.
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] Label [Description]
Gets or sets the text that is displayed on the button.
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] Name [Description]
Gets or sets the name of this RibbonComponent. (Inherited from RibbonComponent.)
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] OfficeImageId [Description]
Gets or sets the image to display on the button, if you want to use a built-in Microsoft Office icon.
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] Parent [Description]
Gets a RibbonComponent that represents the parent of this RibbonComponent. (Inherited from RibbonComponent.)
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] Position [Description]
Gets or sets the position of the button, if the button is on the Microsoft Office Menu.
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] Ribbon [Description]
Gets the top-level Ribbon object that contains the control hierarchy. (Inherited from RibbonComponent.)
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] RibbonUI [Description]
Infrastructure. Gets the IRibbonUI instance that is provided by the Microsoft Office application to the Ribbon extensibility code. (Inherited from RibbonComponent.)
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] ScreenTip [Description]
Gets or sets tooltip text that appears when the user moves the pointer over the button.
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] ShowImage [Description]
Gets or sets a value that indicates whether the image that is associated with the button is visible.
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] ShowLabel [Description]
Gets or sets a value that indicates whether the label for the button is visible.
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] Site [Description]
Gets or sets the ISite associated with the IComponent. (Inherited from IComponent.)
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] SuperTip [Description]
Gets or sets multiline tip text that appears when the user moves the pointer over the button.
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] Tag [Description]
Gets or sets application-specific data that is associated with this RibbonComponent. (Inherited from RibbonComponent.)
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
6d489a55_Microsoft_Office_Tools_Ribbon___Description
[Name] Visible [Description]
Gets or sets a value that indicates whether this RibbonControl is visible. (Inherited from RibbonControl.)
[]
RibbonButton Properties (Microsoft.Office.Tools.Ribbon)
Description
https://msdn.microsoft.com/en-us/library/microsoft.office.tools.ribbon.ribbonbutton_properties.aspx
21/1438042988840.31_20150728002308-00047-ip-10-236-191-2_875908961_0.json
ff6b4648_eryProperty_function__Windows___Description
[Return code] ERROR_BAD_CONFIGURATION [Description]
The configuration data for the wireless Hosted Network is unconfigured. This error is returned if the application calls the WlanHostedNetworkQueryProperty function with the OpCode parameter set to wlan_hosted_network_opcode_station_profile or wlan_hosted_network_opcode_connection_settings before a SSID is configured in the wireless Hosted Network.
[]
WlanHostedNetworkQueryProperty function (Windows)
Description
https://msdn.microsoft.com/en-us/library/windows/desktop/dd439491(v=vs.85).aspx
21/1438043062635.98_20150728002422-00340-ip-10-236-191-2_876385171_0.json
ff6b4648_eryProperty_function__Windows___Description
[Return code] ERROR_INVALID_HANDLE [Description]
A handle is invalid. This error is returned if the handle specified in the hClientHandle parameter was not found in the handle table.
[]
WlanHostedNetworkQueryProperty function (Windows)
Description
https://msdn.microsoft.com/en-us/library/windows/desktop/dd439491(v=vs.85).aspx
21/1438043062635.98_20150728002422-00340-ip-10-236-191-2_876385171_0.json
ff6b4648_eryProperty_function__Windows___Description
[Return code] ERROR_INVALID_PARAMETER [Description]
A parameter is incorrect. This error is returned if any of the following conditions occur: hClientHandle is NULL. OpCode is not one of the enumerated values defined in the WLAN_HOSTED_NETWORK_OPCODE. pdwDataSize is NULL. ppvData is NULL. pWlanOpcodeValueType is NULL. pvReserved is not NULL.
[]
WlanHostedNetworkQueryProperty function (Windows)
Description
https://msdn.microsoft.com/en-us/library/windows/desktop/dd439491(v=vs.85).aspx
21/1438043062635.98_20150728002422-00340-ip-10-236-191-2_876385171_0.json
ff6b4648_eryProperty_function__Windows___Description
[Return code] ERROR_INVALID_STATE [Description]
The resource is not in the correct state to perform the requested operation. This can occur if the wireless Hosted Network was in the process of shutting down.
[]
WlanHostedNetworkQueryProperty function (Windows)
Description
https://msdn.microsoft.com/en-us/library/windows/desktop/dd439491(v=vs.85).aspx
21/1438043062635.98_20150728002422-00340-ip-10-236-191-2_876385171_0.json
ff6b4648_eryProperty_function__Windows___Description
[Return code] ERROR_OUTOFMEMORY [Description]
Not enough storage is available to complete this operation.
[]
WlanHostedNetworkQueryProperty function (Windows)
Description
https://msdn.microsoft.com/en-us/library/windows/desktop/dd439491(v=vs.85).aspx
21/1438043062635.98_20150728002422-00340-ip-10-236-191-2_876385171_0.json
ff6b4648_eryProperty_function__Windows___Description
[Return code] ERROR_SERVICE_NOT_ACTIVE [Description]
The service has not been started. This error is returned if the WLAN AutoConfig Service is not running.
[]
WlanHostedNetworkQueryProperty function (Windows)
Description
https://msdn.microsoft.com/en-us/library/windows/desktop/dd439491(v=vs.85).aspx
21/1438043062635.98_20150728002422-00340-ip-10-236-191-2_876385171_0.json
ff6b4648_eryProperty_function__Windows___Description
[Return code] Other [Description]
Various RPC and other error codes. Use FormatMessage to obtain the message string for the returned error.
[]
WlanHostedNetworkQueryProperty function (Windows)
Description
https://msdn.microsoft.com/en-us/library/windows/desktop/dd439491(v=vs.85).aspx
21/1438043062635.98_20150728002422-00340-ip-10-236-191-2_876385171_0.json
df66306c_ing_Up_and_Restoring_Databases__Topic
[Description] Helps you analyze and refine your data availability requirements and choose a recovery model for each database. [Topic]
Designing a Backup and Restore Strategy
[]
Backing Up and Restoring Databases
Topic
https://msdn.microsoft.com/library/aa196685.aspx
21/1438042988840.31_20150728002308-00116-ip-10-236-191-2_885310115_0.json
df66306c_ing_Up_and_Restoring_Databases__Topic
[Description] Describes each recovery model in detail, as well as appropriate backup and restore strategies. This topic also describes how to switch between recovery models. [Topic]
Using Recovery Models
[]
Backing Up and Restoring Databases
Topic
https://msdn.microsoft.com/library/aa196685.aspx
21/1438042988840.31_20150728002308-00116-ip-10-236-191-2_885310115_0.json
df66306c_ing_Up_and_Restoring_Databases__Topic
[Description] Describes the various types of backups available and how they are used. This topic also describes point-in-time recovery, restarting a failed backup or restore, recovering to a particular transaction, and recovering part of a database. [Topic]
Backup and Restore Operations
[]
Backing Up and Restoring Databases
Topic
https://msdn.microsoft.com/library/aa196685.aspx
21/1438042988840.31_20150728002308-00116-ip-10-236-191-2_885310115_0.json
df66306c_ing_Up_and_Restoring_Databases__Topic
[Description] Describes backup devices, the backup format, and removable media terminology. This section also describes password security and media management including formatting, appending, overwriting, listing, and verifying media contents. [Topic]
Managing Backups
[]
Backing Up and Restoring Databases
Topic
https://msdn.microsoft.com/library/aa196685.aspx
21/1438042988840.31_20150728002308-00116-ip-10-236-191-2_885310115_0.json
df66306c_ing_Up_and_Restoring_Databases__Topic
[Description] Describes the procedures necessary to protect and recover the system databases. [Topic]
Backing Up and Restoring the System Databases
[]
Backing Up and Restoring Databases
Topic
https://msdn.microsoft.com/library/aa196685.aspx
21/1438042988840.31_20150728002308-00116-ip-10-236-191-2_885310115_0.json
df66306c_ing_Up_and_Restoring_Databases__Topic
[Description] Describes features and techniques appropriate for highly available or very large production databases. These include using multiple backup devices, file and filegroup backups, file differential backups, and snapshot backups. [Topic]
Handling Large Mission-Critical Environments
[]
Backing Up and Restoring Databases
Topic
https://msdn.microsoft.com/library/aa196685.aspx
21/1438042988840.31_20150728002308-00116-ip-10-236-191-2_885310115_0.json
df66306c_ing_Up_and_Restoring_Databases__Topic
[Description] Describes the use of backup and restore to quickly transport a database to another server. [Topic]
Copying Databases to Other Servers
[]
Backing Up and Restoring Databases
Topic
https://msdn.microsoft.com/library/aa196685.aspx
21/1438042988840.31_20150728002308-00116-ip-10-236-191-2_885310115_0.json
7288ad26_d__String___System_Reflection___Condition
[Exception] ArgumentException [Condition]
typeName is an empty string ("") or a string beginning with a null character. -or- The current assembly was loaded into the reflection-only context.
[]
Assembly.CreateInstance Method (String) (System.Reflection)
Condition
https://msdn.microsoft.com/en-us/library/dex1ss7c.aspx
21/1438042988840.31_20150728002308-00153-ip-10-236-191-2_885735012_0.json
7288ad26_d__String___System_Reflection___Condition
[Exception] ArgumentNullException [Condition]
typeName is null.
[]
Assembly.CreateInstance Method (String) (System.Reflection)
Condition
https://msdn.microsoft.com/en-us/library/dex1ss7c.aspx
21/1438042988840.31_20150728002308-00153-ip-10-236-191-2_885735012_0.json
7288ad26_d__String___System_Reflection___Condition
[Exception] MissingMethodException [Condition]
No matching constructor was found.
[]
Assembly.CreateInstance Method (String) (System.Reflection)
Condition
https://msdn.microsoft.com/en-us/library/dex1ss7c.aspx
21/1438042988840.31_20150728002308-00153-ip-10-236-191-2_885735012_0.json
7288ad26_d__String___System_Reflection___Condition
[Exception] FileNotFoundException [Condition]
typeName requires a dependent assembly that could not be found.
[]
Assembly.CreateInstance Method (String) (System.Reflection)
Condition
https://msdn.microsoft.com/en-us/library/dex1ss7c.aspx
21/1438042988840.31_20150728002308-00153-ip-10-236-191-2_885735012_0.json
7288ad26_d__String___System_Reflection___Condition
[Exception] FileLoadException [Condition]
typeName requires a dependent assembly that was found but could not be loaded. -or- The current assembly was loaded into the reflection-only context, and typeName requires a dependent assembly that was not preloaded.
[]
Assembly.CreateInstance Method (String) (System.Reflection)
Condition
https://msdn.microsoft.com/en-us/library/dex1ss7c.aspx
21/1438042988840.31_20150728002308-00153-ip-10-236-191-2_885735012_0.json
7288ad26_d__String___System_Reflection___Condition
[Exception] BadImageFormatException [Condition]
typeName requires a dependent assembly, but the file is not a valid assembly. -or- typeName requires a dependent assembly that was compiled for a version of the runtime that is later than the currently loaded version.
[]
Assembly.CreateInstance Method (String) (System.Reflection)
Condition
https://msdn.microsoft.com/en-us/library/dex1ss7c.aspx
21/1438042988840.31_20150728002308-00153-ip-10-236-191-2_885735012_0.json
48262312_stem_Transactions_Namespace_____Interface
[Description] Describes a DTC transaction. [Interface]
IDtcTransaction
[]
System.Transactions Namespace ()
Interface
https://msdn.microsoft.com/en-us/library/a90c30fy.aspx
21/1438042987174.71_20150728002307-00212-ip-10-236-191-2_866112449_3.json
48262312_stem_Transactions_Namespace_____Interface
[Description] Describes an interface that a resource manager should implement to provide two phase commit notification callbacks for the transaction manager upon enlisting for participation. [Interface]
IEnlistmentNotification
[]
System.Transactions Namespace ()
Interface
https://msdn.microsoft.com/en-us/library/a90c30fy.aspx
21/1438042987174.71_20150728002307-00212-ip-10-236-191-2_866112449_3.json
48262312_stem_Transactions_Namespace_____Interface
[Description] Describes an object that acts as a commit delegate for a non-distributed transaction internal to a resource manager. [Interface]
IPromotableSinglePhaseNotification
[]
System.Transactions Namespace ()
Interface
https://msdn.microsoft.com/en-us/library/a90c30fy.aspx
21/1438042987174.71_20150728002307-00212-ip-10-236-191-2_866112449_3.json
48262312_stem_Transactions_Namespace_____Interface
[Description] Represents a transaction that is not a root transaction, but can be escalated to be managed by the MSDTC. [Interface]
ISimpleTransactionSuperior
[]
System.Transactions Namespace ()
Interface
https://msdn.microsoft.com/en-us/library/a90c30fy.aspx
21/1438042987174.71_20150728002307-00212-ip-10-236-191-2_866112449_3.json
48262312_stem_Transactions_Namespace_____Interface
[Description] Describes a resource object that supports single phase commit optimization to participate in a transaction. [Interface]
ISinglePhaseNotification
[]
System.Transactions Namespace ()
Interface
https://msdn.microsoft.com/en-us/library/a90c30fy.aspx
21/1438042987174.71_20150728002307-00212-ip-10-236-191-2_866112449_3.json
48262312_stem_Transactions_Namespace_____Interface
[Description] Describes a delegated transaction for an existing transaction that can be escalated to be managed by the MSDTC when needed. [Interface]
ITransactionPromoter
[]
System.Transactions Namespace ()
Interface
https://msdn.microsoft.com/en-us/library/a90c30fy.aspx
21/1438042987174.71_20150728002307-00212-ip-10-236-191-2_866112449_3.json
ae3cc71e_cuts___Windows_10_hardware_dev__Select
[Keys] SHIFT+LEFT [Select]
Character to the left
[]
Keyboard Shortcuts - Windows 10 hardware dev
Select
https://msdn.microsoft.com/en-us/library/windows/hardware/ff551913
21/1438042988840.31_20150728002308-00072-ip-10-236-191-2_891837926_4.json
ae3cc71e_cuts___Windows_10_hardware_dev__Select
[Keys] SHIFT+RIGHT [Select]
Character to the right
[]
Keyboard Shortcuts - Windows 10 hardware dev
Select
https://msdn.microsoft.com/en-us/library/windows/hardware/ff551913
21/1438042988840.31_20150728002308-00072-ip-10-236-191-2_891837926_4.json
ae3cc71e_cuts___Windows_10_hardware_dev__Select
[Keys] SHIFT+CTRL+LEFT [Select]
Word to the left
[]
Keyboard Shortcuts - Windows 10 hardware dev
Select
https://msdn.microsoft.com/en-us/library/windows/hardware/ff551913
21/1438042988840.31_20150728002308-00072-ip-10-236-191-2_891837926_4.json
ae3cc71e_cuts___Windows_10_hardware_dev__Select
[Keys] SHIFT+CTRL+RIGHT [Select]
Word to the right
[]
Keyboard Shortcuts - Windows 10 hardware dev
Select
https://msdn.microsoft.com/en-us/library/windows/hardware/ff551913
21/1438042988840.31_20150728002308-00072-ip-10-236-191-2_891837926_4.json
ae3cc71e_cuts___Windows_10_hardware_dev__Select
[Keys] SHIFT+DOWN if the caret is in column 1 [Select]
Current line
[]
Keyboard Shortcuts - Windows 10 hardware dev
Select
https://msdn.microsoft.com/en-us/library/windows/hardware/ff551913
21/1438042988840.31_20150728002308-00072-ip-10-236-191-2_891837926_4.json
ae3cc71e_cuts___Windows_10_hardware_dev__Select
[Keys] SHIFT+UP if the caret is in column 1 [Select]
Line above
[]
Keyboard Shortcuts - Windows 10 hardware dev
Select
https://msdn.microsoft.com/en-us/library/windows/hardware/ff551913
21/1438042988840.31_20150728002308-00072-ip-10-236-191-2_891837926_4.json
ae3cc71e_cuts___Windows_10_hardware_dev__Select
[Keys] SHIFT+END [Select]
To the end of the line
[]
Keyboard Shortcuts - Windows 10 hardware dev
Select
https://msdn.microsoft.com/en-us/library/windows/hardware/ff551913
21/1438042988840.31_20150728002308-00072-ip-10-236-191-2_891837926_4.json
ae3cc71e_cuts___Windows_10_hardware_dev__Select
[Keys] SHIFT+HOME [Select]
To the beginning of the line
[]
Keyboard Shortcuts - Windows 10 hardware dev
Select
https://msdn.microsoft.com/en-us/library/windows/hardware/ff551913
21/1438042988840.31_20150728002308-00072-ip-10-236-191-2_891837926_4.json
ae3cc71e_cuts___Windows_10_hardware_dev__Select
[Keys] SHIFT+PAGE UP [Select]
Screen up
[]
Keyboard Shortcuts - Windows 10 hardware dev
Select
https://msdn.microsoft.com/en-us/library/windows/hardware/ff551913
21/1438042988840.31_20150728002308-00072-ip-10-236-191-2_891837926_4.json
ae3cc71e_cuts___Windows_10_hardware_dev__Select
[Keys] SHIFT+PAGE DOWN [Select]
Screen down
[]
Keyboard Shortcuts - Windows 10 hardware dev
Select
https://msdn.microsoft.com/en-us/library/windows/hardware/ff551913
21/1438042988840.31_20150728002308-00072-ip-10-236-191-2_891837926_4.json
ae3cc71e_cuts___Windows_10_hardware_dev__Select
[Keys] SHIFT+CTRL+HOME [Select]
To beginning of file
[]
Keyboard Shortcuts - Windows 10 hardware dev
Select
https://msdn.microsoft.com/en-us/library/windows/hardware/ff551913
21/1438042988840.31_20150728002308-00072-ip-10-236-191-2_891837926_4.json
ae3cc71e_cuts___Windows_10_hardware_dev__Select
[Keys] SHIFT+CTRL+END [Select]
To end of file
[]
Keyboard Shortcuts - Windows 10 hardware dev
Select
https://msdn.microsoft.com/en-us/library/windows/hardware/ff551913
21/1438042988840.31_20150728002308-00072-ip-10-236-191-2_891837926_4.json
1ecd6a95_es_for_Online_Index_Operations__Excluded_indexes
[Online index operation] ALTER INDEX REBUILD [Other restrictions] Specifying the keyword ALL may cause the operation to fail when the table contains an excluded index. Additional restrictions on rebuilding disabled indexes apply. For more information, see Disable Indexes and Constraints. [Excluded indexes]
Disabled clustered index or disabled indexed view XML index Index on a local temp table
[]
Guidelines for Online Index Operations
Excluded indexes
https://msdn.microsoft.com/en-us/library/ms190981.aspx
21/1438042987174.71_20150728002307-00031-ip-10-236-191-2_864275896_1.json
1ecd6a95_es_for_Online_Index_Operations__Excluded_indexes
[Online index operation] CREATE INDEX [Excluded indexes]
XML index Initial unique clustered index on a view Index on a local temp table
[]
Guidelines for Online Index Operations
Excluded indexes
https://msdn.microsoft.com/en-us/library/ms190981.aspx
21/1438042987174.71_20150728002307-00031-ip-10-236-191-2_864275896_1.json
1ecd6a95_es_for_Online_Index_Operations__Excluded_indexes
[Online index operation] CREATE INDEX WITH DROP_EXISTING [Excluded indexes]
Disabled clustered index or disabled indexed view Index on a local temp table XML index
[]
Guidelines for Online Index Operations
Excluded indexes
https://msdn.microsoft.com/en-us/library/ms190981.aspx
21/1438042987174.71_20150728002307-00031-ip-10-236-191-2_864275896_1.json
1ecd6a95_es_for_Online_Index_Operations__Excluded_indexes
[Online index operation] DROP INDEX [Other restrictions] Multiple indexes cannot be specified within a single statement. [Excluded indexes]
Disabled index XML index Nonclustered index Index on a local temp table
[]
Guidelines for Online Index Operations
Excluded indexes
https://msdn.microsoft.com/en-us/library/ms190981.aspx
21/1438042987174.71_20150728002307-00031-ip-10-236-191-2_864275896_1.json
1ecd6a95_es_for_Online_Index_Operations__Excluded_indexes
[Online index operation] ALTER TABLE ADD CONSTRAINT (PRIMARY KEY or UNIQUE) [Other restrictions] Only one subclause is allowed at a time. For example, you cannot add and drop PRIMARY KEY or UNIQUE constraints in the same ALTER TABLE statement. [Excluded indexes]
Index on a local temp table Clustered index
[]
Guidelines for Online Index Operations
Excluded indexes
https://msdn.microsoft.com/en-us/library/ms190981.aspx
21/1438042987174.71_20150728002307-00031-ip-10-236-191-2_864275896_1.json
1ecd6a95_es_for_Online_Index_Operations__Excluded_indexes
[Online index operation] ALTER TABLE DROP CONSTRAINT (PRIMARY KEY or UNIQUE) [Excluded indexes]
Clustered index
[]
Guidelines for Online Index Operations
Excluded indexes
https://msdn.microsoft.com/en-us/library/ms190981.aspx
21/1438042987174.71_20150728002307-00031-ip-10-236-191-2_864275896_1.json
431e0d82_Access_Token_Objects__Windows___Meaning
[Value] TOKEN_ADJUST_DEFAULT [Meaning]
Required to change the default owner, primary group, or DACL of an access token.
[]
Access Rights for Access-Token Objects (Windows)
Meaning
https://msdn.microsoft.com/pt-pt/library/aa374905.aspx
21/1438042987174.71_20150728002307-00162-ip-10-236-191-2_871635158_0.json
431e0d82_Access_Token_Objects__Windows___Meaning
[Value] TOKEN_ADJUST_GROUPS [Meaning]
Required to adjust the attributes of the groups in an access token.
[]
Access Rights for Access-Token Objects (Windows)
Meaning
https://msdn.microsoft.com/pt-pt/library/aa374905.aspx
21/1438042987174.71_20150728002307-00162-ip-10-236-191-2_871635158_0.json
431e0d82_Access_Token_Objects__Windows___Meaning
[Value] TOKEN_ADJUST_PRIVILEGES [Meaning]
Required to enable or disable the privileges in an access token.
[]
Access Rights for Access-Token Objects (Windows)
Meaning
https://msdn.microsoft.com/pt-pt/library/aa374905.aspx
21/1438042987174.71_20150728002307-00162-ip-10-236-191-2_871635158_0.json
431e0d82_Access_Token_Objects__Windows___Meaning
[Value] TOKEN_ADJUST_SESSIONID [Meaning]
Required to adjust the session ID of an access token. The SE_TCB_NAME privilege is required.
[]
Access Rights for Access-Token Objects (Windows)
Meaning
https://msdn.microsoft.com/pt-pt/library/aa374905.aspx
21/1438042987174.71_20150728002307-00162-ip-10-236-191-2_871635158_0.json
431e0d82_Access_Token_Objects__Windows___Meaning
[Value] TOKEN_ASSIGN_PRIMARY [Meaning]
Required to attach a primary token to a process. The SE_ASSIGNPRIMARYTOKEN_NAME privilege is also required to accomplish this task.
[]
Access Rights for Access-Token Objects (Windows)
Meaning
https://msdn.microsoft.com/pt-pt/library/aa374905.aspx
21/1438042987174.71_20150728002307-00162-ip-10-236-191-2_871635158_0.json
431e0d82_Access_Token_Objects__Windows___Meaning
[Value] TOKEN_DUPLICATE [Meaning]
Required to duplicate an access token.
[]
Access Rights for Access-Token Objects (Windows)
Meaning
https://msdn.microsoft.com/pt-pt/library/aa374905.aspx
21/1438042987174.71_20150728002307-00162-ip-10-236-191-2_871635158_0.json
431e0d82_Access_Token_Objects__Windows___Meaning
[Value] TOKEN_EXECUTE [Meaning]
Combines STANDARD_RIGHTS_EXECUTE and TOKEN_IMPERSONATE.
[]
Access Rights for Access-Token Objects (Windows)
Meaning
https://msdn.microsoft.com/pt-pt/library/aa374905.aspx
21/1438042987174.71_20150728002307-00162-ip-10-236-191-2_871635158_0.json
431e0d82_Access_Token_Objects__Windows___Meaning
[Value] TOKEN_IMPERSONATE [Meaning]
Required to attach an impersonation access token to a process.
[]
Access Rights for Access-Token Objects (Windows)
Meaning
https://msdn.microsoft.com/pt-pt/library/aa374905.aspx
21/1438042987174.71_20150728002307-00162-ip-10-236-191-2_871635158_0.json
431e0d82_Access_Token_Objects__Windows___Meaning
[Value] TOKEN_QUERY [Meaning]
Required to query an access token.
[]
Access Rights for Access-Token Objects (Windows)
Meaning
https://msdn.microsoft.com/pt-pt/library/aa374905.aspx
21/1438042987174.71_20150728002307-00162-ip-10-236-191-2_871635158_0.json
431e0d82_Access_Token_Objects__Windows___Meaning
[Value] TOKEN_QUERY_SOURCE [Meaning]
Required to query the source of an access token.
[]
Access Rights for Access-Token Objects (Windows)
Meaning
https://msdn.microsoft.com/pt-pt/library/aa374905.aspx
21/1438042987174.71_20150728002307-00162-ip-10-236-191-2_871635158_0.json