Hi,
MS-DOS utility that displays protocol statistics and current TCP/IP connections using NBT (NetBIOS over TCP/IP), which allow the user to troubleshoot NetBIOS name resolution issues. Normally, name resolution is done when NetBIOS over TCP/IP is functioning correctly. It does this through local cache lookup, WINS or DNS server query or through LMHOSTS or Hosts lookup.
Availability
NBTSTAT [ [-a RemoteName] [-A IP address] [-c] [-n] [-r] [-R] [-RR] [-s] [-S] [interval] ]
-a (adapter status) Lists the remote machine's name table given its name
-A (Adapter status) Lists the remote machine's name table given its IP address.
-c (cache) Lists NBT's cache of remote [machine] names and their IP addresses
-n (names) Lists local NetBIOS names.
-r (resolved) Lists names resolved by broadcast and via WINS
-R (Reload) Purges and reloads the remote cache name table
-S (Sessions) Lists sessions table with the destination IP addresses
-s (sessions) Lists sessions table converting destination IP addresses to computer NETBIOS names.
-RR (ReleaseRefresh) Sends Name Release packets to WINs and then, starts Refresh
RemoteName Remote host machine name.
IP address Dotted decimal representation of the IP address.
interval Redisplays selected statistics, pausing interval seconds between each display. Press Ctrl+C to stop redisplaying statistics.
Examples
nbtstat -A 204.224.150.3
REF : http://www.computerhope.com/
Regards,
The purpose of this blog is for knowledge sharing and connect the relevant audience who are all into Microsoft Dynamics world.
Alfasith AX
Wednesday, December 24, 2014
Tuesday, December 16, 2014
Code / Job to run any application from AX
Hi,
static void AlfasithRunAnyApplication(Args _args)
{
WinAPI::shellExecute("D:\\Dynamic Netsoft Construction Suite V2.pptx");
WinAPI::shellExecute("C:\\Users\\dns.amohamed\\Downloads\\Love Mash Up.mp3");
// Here Application will wait till previous application opens / runs
}
Regards,
Sunday, December 14, 2014
Code to refresh AOS and remove *.AOC files in AX
Hi,
static server void refreshAOS(Args _args)
{
;
xSession::removeAOC();
SysTreeNode::refreshAll();
SysFlushDictionary::doFlush();
SysFlushAOD::doFlush();
xSession::updateAOC();
}
Regards,
REF: http://www.dynamicsaxlatino.com/limpiar-flush-cache-de-aos-o-aot-en-ax/
static server void refreshAOS(Args _args)
{
;
xSession::removeAOC();
SysTreeNode::refreshAll();
SysFlushDictionary::doFlush();
SysFlushAOD::doFlush();
xSession::updateAOC();
}
Regards,
REF: http://www.dynamicsaxlatino.com/limpiar-flush-cache-de-aos-o-aot-en-ax/
Code to refresh AOT in AX
Hi,
public server static void refreshServer()
{
#AOT ;
TreeNode::findNode(#TablesPath).AOTrefresh();
TreeNode::findNode(#TableMapsPath).AOTrefresh();
TreeNode::findNode(#ViewsPath).AOTrefresh();
TreeNode::findNode(#ExtendedDataTypesPath).AOTrefresh();
TreeNode::findNode(#BaseEnumsPath).AOTrefresh();
TreeNode::findNode(#LicenseCodesPath).AOTrefresh();
TreeNode::findNode(#ConfigurationKeysPath).AOTrefresh();
TreeNode::findNode(#SecurityKeysPath).AOTrefresh();
TreeNode::findNode(#TableCollectionsPath).AOTrefresh();
TreeNode::findNode(#PerspectivesPath).AOTrefresh();
TreeNode::findNode(#MacrosPath).AOTrefresh();
TreeNode::findNode(#ClassesPath).AOTrefresh();
TreeNode::findNode(#ReportsPath).AOTrefresh();
TreeNode::findNode(#ReportTemplatesPath).AOTrefresh();
TreeNode::findNode(#SectionTemplatesPath).AOTrefresh();
TreeNode::findNode(#QueriesPath).AOTrefresh();
TreeNode::findNode(#JobsPath).AOTrefresh();
Dictionary::aodFlush();
Dictionary::dataFlush();
flush UtilElements, UtilIdElements;
}
Regards,
public server static void refreshServer()
{
#AOT ;
TreeNode::findNode(#TablesPath).AOTrefresh();
TreeNode::findNode(#TableMapsPath).AOTrefresh();
TreeNode::findNode(#ViewsPath).AOTrefresh();
TreeNode::findNode(#ExtendedDataTypesPath).AOTrefresh();
TreeNode::findNode(#BaseEnumsPath).AOTrefresh();
TreeNode::findNode(#LicenseCodesPath).AOTrefresh();
TreeNode::findNode(#ConfigurationKeysPath).AOTrefresh();
TreeNode::findNode(#SecurityKeysPath).AOTrefresh();
TreeNode::findNode(#TableCollectionsPath).AOTrefresh();
TreeNode::findNode(#PerspectivesPath).AOTrefresh();
TreeNode::findNode(#MacrosPath).AOTrefresh();
TreeNode::findNode(#ClassesPath).AOTrefresh();
TreeNode::findNode(#ReportsPath).AOTrefresh();
TreeNode::findNode(#ReportTemplatesPath).AOTrefresh();
TreeNode::findNode(#SectionTemplatesPath).AOTrefresh();
TreeNode::findNode(#QueriesPath).AOTrefresh();
TreeNode::findNode(#JobsPath).AOTrefresh();
Dictionary::aodFlush();
Dictionary::dataFlush();
flush UtilElements, UtilIdElements;
}
Regards,
Monday, December 1, 2014
An unexpected error has occurred while opening the workflow. See the event log on the AOS and contact your system administrator to resolve the issue.
Hi,
Error : "An unexpected error has occurred while opening the workflow. See the event log on the AOS and contact your system administrator to resolve the issue."
when creating the workflow in the AX, where as standard workflow is creating.
Solution : Generate Full CIL +Synchronization of all the tabels will relieve you from this error.
Regards,
Error : "An unexpected error has occurred while opening the workflow. See the event log on the AOS and contact your system administrator to resolve the issue."
when creating the workflow in the AX, where as standard workflow is creating.
Solution : Generate Full CIL +Synchronization of all the tabels will relieve you from this error.
Regards,
Subscribe to:
Posts (Atom)
SQL code to upate one Legal entity banner to all the legal entity in D365
Hi, update companyimage set companyimage.Image = companyimageA.Image from ( select Image from companyimage where dataAreaid = 'USF...
-
Hi, AccountingDistribution ( accounting distribution 7452 ) AccountingDistributionEventTmp ( accounting distribution 100001 ) Accountin...
-
Hi, Create a EDT name it Gender then in properties enumType : //select the enum name Use the below code and enjoy. static v...