Home
last modified time | relevance | path

Searched refs:computername (Results 1 – 7 of 7) sorted by relevance

/reactos/base/applications/cmdutils/at/lang/
H A Dzh-TW.rc9 AT [\\\\computername] [ [id] [/DELETE] | /DELETE [/YES]]\n\
10 AT [\\\\computername] time [/INTERACTIVE]\n\
12 \\\\computername 指定一個遠端電腦。若省略這個參數,命令將在本地電腦上執行\n\
H A Dzh-CN.rc15 AT [\\\\computername] [ [id] [/DELETE] | /DELETE [/YES]]\n\
16 AT [\\\\computername] time [/INTERACTIVE]\n\
18 \\\\computername 指定一个远程计算机。如果省略这个参数命令将运行在本地\n\
H A Den-US.rc8 AT [\\\\computername] [ [id] [/DELETE] | /DELETE [/YES]]\n\
9 AT [\\\\computername] time [/INTERACTIVE]\n\
11 \\\\computername Specifies a remote computer. Commands are scheduled on the\n\
/reactos/dll/win32/kernel32/client/
H A Dcompname.c736 LPWSTR computername, in DnsHostnameToComputerNameW() argument
741 DPRINT("(%s, %p, %p): stub\n", hostname, computername, size); in DnsHostnameToComputerNameW()
754 if (!computername) return FALSE; in DnsHostnameToComputerNameW()
756 memcpy(computername, hostname, len * sizeof(WCHAR)); in DnsHostnameToComputerNameW()
757 computername[len + 1] = 0; in DnsHostnameToComputerNameW()
/reactos/modules/rostests/winetests/advapi32/
H A Deventlog.c922 char *sourcename, *computername; in test_readwrite() local
966 computername = (char *)((BYTE *)buf + sizeof(EVENTLOGRECORD) + lstrlenA(sourcename) + 1); in test_readwrite()
967 ok(!lstrcmpiA(computername, localcomputer), "Expected '%s', got '%s'\n", in test_readwrite()
968 localcomputer, computername); in test_readwrite()
978 …culated_sidoffset = sizeof(EVENTLOGRECORD) + lstrlenA(sourcename) + 1 + lstrlenA(computername) + 1; in test_readwrite()
/reactos/sdk/include/reactos/mc/
H A Dnet_msg.mc439 NET COMPUTER \\computername {/ADD | /DEL}
448 NET COMPUTER \\computername {/ADD | /DEL}
451 NET COMPUTER \\computername {/ADD | /DEL}
454 NET COMPUTER \\computername {/ADD | /DEL}
457 NET COMPUTER \\computername {/ADD | /DEL}
460 NET COMPUTER \\computername {/ADD | /DEL}
2983 /WORKSTATIONS:{computername[,...] | *}
3235 /WORKSTATIONS:{computername[,...] | *}
3309 /WORKSTATIONS:{computername[,...] | *}
3383 /WORKSTATIONS:{computername[,...] | *}
[all …]
/reactos/dll/win32/msi/
H A Dpackage.c908 WCHAR *computername; in set_installer_properties() local
909 if ((computername = malloc( len * sizeof(WCHAR) ))) in set_installer_properties()
911 if (GetComputerNameW( computername, &len )) in set_installer_properties()
912 msi_set_property( package->db, L"ComputerName", computername, len ); in set_installer_properties()
913 free( computername ); in set_installer_properties()