Posts

Showing posts from June, 2013

Permissions on Subfolders

hi i have shared folder share domain users loads of subfolders, there (for now) 1 subfolder needs have different permissions cannot accessed domain users users in specific security group. i cannot seem find how-to-do-that windows 2012r2 anyone able point me in correct direction? /lars hi, can try steps below disable inheritance on subfolder remove inherited parent permissions subfolder. add explicit permissions on subfolder. 1. right-click subfolder, , click properties . 2. on security tab, click advanced . 3. click disable inheritance . best regards, mandy please remember mark replies answers if , unmark them if provide no help. if have feedback technet subscriber support, contact tnmff@microsoft.com. Windows Server  >  File Services and Storage ...

How to kill process on a Performance Monitor Alert?

hi, using performance monitor on w2003 , 2008 to target troublesome processes works. need ability kill/close when alert triggered. seems don't have "process id" argument use in "task arguments" of alert configuration. can't process id somehow? -- werner wow - many viewers , noone tried before? when creating actions process monitoring how can not use processid? doesn't make sense identifier of counter isn't available in trigger/alert! --  werner Windows Server  >  Windows Server General Forum

Loopback processing for servers.

hi, i'm considreing possibility of setting loopback processind mode , replace servers within domain. the idea not apply of user policies there few users don't use administtrative account logon server. what advantages/disadvantages see subject? thank you. read this, advantages of using loopback processing mode allows specify gpo settings specific terminal server session. allows merging or complete replacement of user gpo settings. disadvantages of using loopback processing mode user environments have different configurations between terminal server sessions , normal desktops. additional complexity can harder administer. referece - http://www.brianmadden.com/blogs/terminal_services_for_microsoft_windows_server_2003_advanced_technical_design_guide/pages/user-policies-group-policies.aspx additionally read below link, http://grouppolicy.editme.com/loopback regards, _prashant_ mcsa|mcitp sa|microsoft exchange 2003 blog - http://prashant1987.wordpre...

RDS 2012 session host certificate assignment

hi rds guys, i'm having big trouble configuring certificates rds session host rdp connections. i have 2 2012 rds servers in collection , have 2 records name ts.mydomain.tld point ips of each server. when try connect ts.mydomain.tld certificate warning rds certificates self signed certs each rds. why can't assign certficate per rdp-listener anymore? in scenario rdgateway not working anymore because of cert issue. cheers sebastian bammer hi freek, here's solution worked me: $pass = convertto-securestring " passwordfothepfxfile " -asplaintext -force $thumbprint = (import-pfxcertificate -password $pass -certstorelocation cert:\localmachine\my -filepath '\\server\share\certificatewithprivatekey.pfx').thumbprint $path = (get-wmiobject -class "win32_tsgeneralsetting" -namespace root\cimv2\terminalservices -filter "terminalname='rdp-tcp'").__path set-wmiinstance -path $path -argument @{sslcertificatesha1hash="$t...

Passing parameters locally and on a remote machine

i can't recognize splash parameter   $exe     = "c:\program files (x86)\somevendor\someapp\launch.exe" $cmdline     = "splash" &   $exe $cmdline this target box looks in shortcut. "c:\program files (x86)\somevendor\someapp\launch.exe" splash from get-help about_operators: &  call operator         description: runs command, script, or script block. because call         operator not parse, cannot interpret command parameters.         call operator, known "invocation operator, indicates         value precedes command. enables run commands         stored in variables , represented strings. i think invoke-expression might work better in application:   $e...

how to round all numbers in a table

Image
hi, have table of fractional numbers, , need round them 3 digits after floating point. how can so? thank in advance. regards, aya. aya zoghby how select table, , change cells format number, use increase/decrease decimal buttons modify digits? max meng technet community support Microsoft Office  >  Word IT Pro Discussions

Powershell script add bulk users in ADDS with custom Attributes

hi all, good day. need create 250 users in ad in specific ou. need set email field , proxy attribute. also domain name abc.com , upn xyz. user name , email address should come ...@xyz format(upn). default password should set , enable "user must change password on next logon". please share ps script available , excel sheet format. example format user austin jose display name : austin jose user id : ajose@xyz.com mail id : ajose@xyz.com proxy attribute : smtp:ajose@xyz.com regards, austin jose check technet repository https://gallery.technet.microsoft.com/scriptcenter/site/search?f%5b0%5d.type=searchtext&f%5b0%5d.value=bulk%20users&f%5b1%5d.type=rootcategory&f%5b1%5d.value=activedirectory&f%5b1%5d.text=active%20directory Windows Server  >  ...

Error during DC Promo

hi, i receiving error when trying promote windows 2008 r2 or windows 2012 r2 server domain controller in existing windows 2003 (sp2) domain. have tried both 2008 r2 , 2012 r2 , receiving same error. existing environment: 2 x windows 2003 sp2 domain controllers several "external" trusts windows server 2003 functional level new windows 2008 r2 , windows server 2012 r2 servers (with dns pointing existing 2003 dc's dns servers) the error: the promotion errors following in adprep.log file. adprep unable complete because call function failed. [status/consequence] error message: unable access computer "domaincontrollername.domain.com.au". access denied.   (0x80070005). [user action] check log file adprep.log, in c:\windows\debug\adprep\logs\20140207153306 directory more information. dsid info: dsid: 0x1811132a winerror = 0x1f nt build: 9600 nt build: 16384 [2014/02/07:15:33:06.648] adprep unable update forest information. w...

native to mixed mode ???

i'm performing migrating windows 2000 2003. have 4 domains domain - (root forest), domain -b(child of a, 2000 native mode), domain -c(child of a,2000 native mode), domain-d(child of a, in mixed mode. migration stratergy objects domain c & d moved b , later domain c & d decomissioned.the ad infrastrcuture has windows 2000 dcs , there no nt 4.0 pdc/bdc. know risk, 1) there risk of raising domain functional level of domain d mixed 2000 native. 2) ms state there no revert native mixed, in situation have though of few restoration option , want views on it  > option#1 server hosting ad service, dns,dhcp , file services. first stopping inbound&outbound replication domain d , wait 48 hours check if servers in domain d functioning fine once confirmed enable replication. >option#2 restart dc in restore mode, assume in ad restore mode ad services down still dns,dhcp , file services fucntion. > option#3 restore entire forest. thanks ezak long aren't supporting nt...

Exchange Calendar permission

Image
i give mailboxes 'owner' access other mailboxes, i.e. users should 'owner' of each other's calendar. to test this, started trying give mailboxes access small list of users error message. code is: **** $list =  ("john.smith","alison.smith","bernice.smith","hilary.smith") $allusers = get-mailbox | select -expandproperty alias foreach ($user in $list) {add-mailboxfolderpermission $user":\calendar" -user $allusers -accessrights owner} **** the error is: cannot process argument transformation on parameter 'user'. cannot convert "system.collections.arraylist" value of type "system.collections.arraylist" type "microsoft.exchange.management.storetasks.mailboxfolderuseridparameter".     + categoryinfo          : invaliddata: (:) [add-mailboxfolderpermission], parameterbindin...mationexception     + fu...

How do you make all Word documents open at 100 percent (view)?

my user needs word documents open open @ view setting of 100 percent. i'm not sure how accomplish this, there no visible settings. thank assistance.  the way know of doing macro; don't know of global setting. it either autoopen macro in user's normal.dotm template or document_open event handler in separate global template. sub autoopen()     if activewindow.view.zoom <> 100 activewindow.view.zoom = 100 end sub charles kenyon madison, wi Microsoft Office  >  Word IT Pro Discussions

one folder didn't replicate

this subfolder cut , paste parent folder.  reason, subfolder isn't replicating though else in parent folder has been replicating wks. how force replication of subfolder? source , target server both w2k8r2 hi, data may not replicated @ once 1 day past, whether folder replicated or still not? if still not, test rename folder , see result. run diagnostic report see if there error occurs. in addition, please check if there dfs related error occurs in event log. technet subscriber support in forum |if have feedback on our support, please contact tnmff@microsoft.com. Windows Server  >  File Services and Storage

deploy certain apps to certain users

i have 100 users , 10 use adobe acrobat , rest use reader there way prevent other 90 users not use acrobat , same word excel etc? thanks i think configuration of ntfs permissions solve problem. this how proceed: 1- configure ntfs permissions on folders applications installed (specify users allowed access , deny access other users) 2- try execute application , check if okay or not (use @ least 1 account allowed use , 1 account have denied access) try manually. if okay , applications installed locally in same location on client computers, can apply gpo change ntfs permissions , apply them. this how proceed configure gpo: computer configuration\policies\windows settings\security settings\file system can add files\folders , set ntfs permissions. this posting provided "as is" no warranties, , confers no rights. Windows Server  ...

2003 Server EFS - Certificate for Network Users Question

Image
hi, have encrypted folder, shared on 2003 svr part of simple domain. it's working fine, other users, we're trying use network shared folder. i understand need add users' certificates individual, encrypted files' permissions allow them access, possible export certs/keys of single authorized user rest of users' machines allow them access? i've seen asked before, replies directs user best practices doc. i'd know if it's possible, , how it. another related question: if have stand-alone machine, not part of domain, , needs access encrypted, shared folder - should create self-signed cert user (\\machinename\username) on machine , import server housing encrypted folder , grant user permission on indiv. encrypted files, correct? same question before, there way import certificate (belonging existing authorized user) on user's computer allow him access encrypted share? thanks in advance!  hi,   default, members of domain admins , domain...

Extract inactive computer accounts with OS details

i looking script or shell commandlet extract inactive computer account in ad os details. right have ds query : dsquery computer domainroot -stalepwd 180 -limit 0 > computeraccounts+180.txt , give me inactive accounts  but how can extract os detail this?         ani hello, to extract os of ad computers, have script:  http://blog.riversen.dk/?p=62 you can search way combine result of 2 scripts (maybe 3rd script). for more information, post in forum: http://social.technet.microsoft.com/forums/fr-fr/itcg/threads   posting provided "as is" no warranties or guarantees , , confers no rights. microsoft student partner microsoft certified professional microsoft certified systems administrator: security microsoft certified systems engineer: security microsoft certified technology specialist: windows server 2008 active directory, configuration microsoft certified technology specialist: windows server 200...

Monitoring Objects name attribute for catching when moved date of object

hi all, i know have strange query m in need of same. ou name = x i want monitor user/computer/group objects when moved in ou x, presently doing bad way getting dn of objects & running  command below. repadmin /showmeta "object dn" | find " name"  & upending data excel & sorting dates when moved & all. ouput getting date when objeccts name attibute changed last. but can please suggest how monitor objects when moved date powershell script. because when executed get-aduser username -properties * not finding catching name object(as in showmeta inside attribute store) i observed 1 thing when move particular user diff ou, name object in attribute stores gets changed way presently catching date last movement of object want powershell way. have a great day ahead.... thanks in advance... vicky rajdev... " rockstar ;) " vicky rajdev if understand you're after, need enable , configure ad object access aud...

Control de Accesos a Dominio - Duda

estimados, como me recomiendan prevenir que equipos/users fuera del dominio se puedan conectar un serverx. en caso de equipos de dominio lo gestiono via control de logon to.. ad=win2003 y equipos win7 saludos. ale creo que no termino de entender bien lo que preguntas. si los clientes no están unidos al dominio, no les puedes aplicar ninguna política del mismo, ya que cada cliente de esos va por libre, y se debe configurar por separado. lo que sí puedes hacer es editar la política de seguridad local (por ejemplo ejecutando gpedit.msc) y exportanto la configuración de seguridad, quitar lo que no quieras que sea común, y volver importar el archivo .inf resultante en todos los clientes que estén fuera del dominio.  los equipos fuera del dominio pueden acceder recursos compartidos en servidores y clientes del dominio, siempre y cuando en la conexión que realizan especifiquen una cuenta de usuario del dominio y su contrase...

8GB memory but can only allocate 3GB to Vm's

hi i have server running windows 2008 enterprise 64 bit hyper-v rc1 enabled. server has 8gb ram i have 3 vm's allocated 1gb ram each when try add additional vm's recieve , error saying  sql server' unable allocate 1024 mb of ram. available memory 4379 mb: insufficient system resources exist complete requested service. (0x800705aa). deano   i found post changing windows host virtual memory page file system managed recommend value thought give try.   http://forums.technet.microsoft.com/en-us/winserverhyperv/thread/908d304c-0746-4272-ac7f-85cf4350f2f2/ so far problem has cleared!  i'll repost in few days after server has been , running while.  had restart host due page file change. Windows Server  >  Hyper-V ...

Windows 7 and Easy Print

i have windows 2008 r2 remote desktop farm set on network. vista , xp clients see printers when connecting via easy print. however, have 2 windows 7 64-bit ultimate pcs printers not follow through. requirement saw on microsoft making sure host role installed on server, , is, or xp , vista clients wouldn't able use easy print either.   any ideas? and meant "only" requirement windows 7 clients. know there rdc , .net framework requirements xp , vista. Windows Server  >  Remote Desktop Services (Terminal Services)

dfs log files

i running windows 2003 r2 within environments. trying find dfs puts log files. can tell me where? hi officertango, by default, dfs debug log saved in c:\windows\debug on dfs server. for more information dfsr debug logging, please refer directory service team blog.   understanding dfsr debug logging (part 1: logging levels, log format, guid’s) http://blogs.technet.com/askds/archive/2009/03/23/understanding-dfsr-debug-logging-part-1-logging-levels-log-format-guid-s.aspx   understanding dfsr debug logging (part 2: nested fields, module id's) http://blogs.technet.com/askds/archive/2009/03/24/understanding-dfsr-debug-logging-part-2-nested-fields-module-id-s.aspx   understanding dfsr debug logging (part 3: log scenario format, file added replicated folder on windows server 2008) http://blogs.technet.com/askds/archive/2009/03/25/understanding-dfsr-debug-logging-part-3-the-log-scenario-format-file-added-to-replicated-folder-on-windows-server-2008.aspx   hope ...

get-adgroupmember does not get members of the domain\Administrators group

windows 2008 forest using adws on dc's powershell 2 running windows 7 box console , ide not finding on web issue there not appear to error. when using get-adgroupmember -identity "cn=administrators,cn=builtin,dc=####,dc=#######,dc=com" or get-adgroupmember -identity administrators i this: get-adgroupmember : operation completed successfully @ line:1 char:18 + get-adgroupmember <<<<  -identity "cn=administrators,cn=builtin,dc=####,dc=######,dc=com"     + categoryinfo          : notspecified: (cn=administrato...######,dc=com:adgroup) [get-adgroupmember], adexception     + fullyqualifiederrorid : operation completed successfully,microsoft.activedirectory.management.commands.getadgroupmember works find when getting members of domain admins group (get-adgroupmember -identity "domain admins") and others. running these cmd...

ScandAll Pro Version 1.8.1 Win Server 2008 Standard

hi, i have problems running scanner software fujitsu fi-6110 document scanner. i'm using 2 other scanner softwares working without problems. fujitsu support doesn't know solution. i'm using thinclients. scanner connected directly server. any ideas how can setup system make software work? kind regards hello, please understand fujitsu support not part microsoft. check there support correct installed drivers/software os version. best regards meinolf weber mvp, mcp, mcts microsoft mvp - directory services my blog : http://msmvps.com/blogs/mweber/ disclaimer: posting provided no warranties or guarantees , confers no rights. Windows Server  >  Windows Server General Forum

Hide Outlook 2010 Icon using Group Policy

hello, we rolling out windows 7 enterprise machines office 2010 installed on them outlook not our current email program. need way hide icon until switch exchange later in year using group policy. any ideas? thank you   hi greg, question. far know, there no specific gp settings hide outlook icon, can use applock or srp restrict users from using outlook application instead. see how configure applocker group policy in windows 7 block third-party browsers  and using software restriction policies protect against unauthorized software . brent technet subscriber support in forum if have feedback on our support, please contact  tnmff@microsoft.com please remember click “mark answer” on post helps you, , click “unmark answer” if marked post not answer question. can beneficial other community members reading thread. Windows Server ...

Cluster node addition fails on cleanup

Image
we have 2 node cluster setup already (2) hp bl460c g8 servers connected vnx5300 san   (nodes 1 & 2) server 2012 datacenter installed quarum: node + disk all failover tests went , vms healthy verification on cluster show warnings no failures we have rebuilt server (node 3) renamed , have run single machine verification test see if suitable clustering. succeeded minor warnings we ran verification on 3 machines , received formentioned warnings no game stoppers, when trying add host cluster following error in logs: warn mscs::listenerworker::operator (): error_timeout(1460)' because of '[fti][initiator] aborting connection because netft route node <machine name> on virtual ip fe80::cdf2:f6ea:5ce:5f9c:~3343~ has failed come up.' this happens after node added cluster reports failure on cleanup processes , reverts back. have done of under domain_admin account. before , after attempt add netft adapter in media disconnect, during attempts pull down 169 ...

General networking failure on Windows Server 2008

i have windows server on number of services no longer start. these include base filtering engine, dhcp client, network location awareness, , windows firewall. when attempting start nla, error displayed indicates network location awareness service terminated code 1073741288. when attempting start bfe or dhcp, less specific error given indicating error 0x5, "access denied". the system's active ethernet interface no longer has statically configured ipv4 address. interface has link-local address, only, both ipv4 , ipv6. other hosts on same broadcast domain link-local addresses unable reach it, although has addresses networking stack not functioning. believe not function until firewall service repaired. when attempting view ipv4 properties of ethernet adapter, i'm given error message indicating "to configure tcp/ip must install , enable network adapter". removing , reinstalling network adapter did not repair problem. removing ipv4 impossible, far can ...

ERROR WHILE WORKING ON WINDOWS SERVER 2012

please check error & inform solution. https://social.technet.microsoft.com/forums/getfile/1086847 something here may help. https://docs.microsoft.com/en-us/windows-hardware/drivers/devtest/interpreting-a-bug-check-code     regards, dave patrick .... microsoft certified professional microsoft mvp [windows server] datacenter management disclaimer: posting provided "as is" no warranties or guarantees, , confers no rights. Windows Server  >  Windows Server Technical Preview

Set-DistributionGroup : Set ManagedBy multiple users

hello, created script accept user input (for username) the script accept 1 username @ time , combine 1 string (separated comma + space) , assign variable. i do: set-distributiongroup -identity testdl -managedby $ownerlist i error:  couldn't find object "user1, user2". please make sure spelled correctly or specify different object.     + categoryinfo          : notspecified: (0:int32) [set-distributiongroup], managementobjectnotfoundexception     + fullyqualifiederrorid : 132914ad,microsoft.exchange.management.recipienttasks.setdistributiongroup if manually type: set-distributiongroup -identity testdl -managedby user1, user2  it works. any ideas? thanks! the managedby field can have multiple users.  as mentioned, same line works if manually type in names. if suggestion, make last person on list owner (because keeps replacing owner). managedby parameter accepts...

script that will compare the files in the directory date stamp an dthen lock them

i have 2 questions. can write script compare files in directory date stamp created , modified? is possible lock down particular directory (even admins) modify a  file once has been created? if answers yes, how? bob lin, mcse & cne networking, internet, routing, vpn networking, internet, routing, vpn troubleshooting on http://www.chicagotech.net how install , configure windows, vmware, virtualization , cisco on http://www.howtonetworking.com 1. yes can. 2. i'm not aware of way that, others might know of one. since it's more of scripting things general server thing i'd suggest ask on @ scripting forum https://social.technet.microsoft.com/forums/en-us/home?forum=itcg instead, people there more able give definitive answers , examples. Windows Server  >  Windows Server ...

nslookup domainname fails, nslookup domainname.fqdn works fine

hello, i've got issue on windows server 2008 domain, has been promoted domainname.fqdn domain using dcpromo , automatically dns configuration. netbios name domain domainname. c:\nslookup domainname server: localhost address: 127.0.0.1 *** localhost can't find domainname c:\nslookup domainname.fqdn server: localhost address: 127.0.0.1 name: domainname.fqdn address: 192.168.1.1 192.168.1.1 ip address of domain controller / dns server. on domain manually configured dns nslookup domainname runs properly. both domain controllers / dns servers of 2 domains configured identically, 1 successful. wins not used in both domains, nbtstat -n on both servers show identically results (different domainnames only). dcdiag running without issues on both systems. i tried internet research without suggestions. any ideas? thanks in advance, thomas i thought question , able reproduce problem, not problem. dns not , should not resolve netbios flat names because not designed to.  exception if have ...

RemoteFX on Windows HPC

hi,     head node doing opengl gpu-based off-screen rendering, have turn off default wddm installing microsoft cap driver.     such, have enable remotefx. however, realise remotefx not found on list of server manager roles. there way activate feature? head node running on windows server 2008 hpc r2 sp1, attached nvidia m2070q gpu.     helping!   kind regards, jimmy if missing should start requirements remote fx : to take advantage of remotefx functionality when connecting virtual desktops, following hardware requirements must met: a hyper-v server meets hardware requirements listed in windows server technical library. more information hardware requirements, see hardware considerations remotefx . http://technet.microsoft.com/en-us/library/ff817602(ws.10).aspx the client computer must running remote desktop connection 7.1.   Windows S...

Any Bitlocker scripts?

hi, have powershell scripts or examples show how manage bitlocker (e.g., displaying encryption status, retrieving recovery keys, changing user pin, etc). thanks, rrt life motto #1: "live life give damn." here's 1 recover bitlocker key (uses rsat activedirectory module - watch wrappage). $computer = read-host "enter computer name" $comp_dn = (get-adcomputer $computer).distinguishedname get-adobject  -filter 'objectclass -eq "msfve-recoveryinformation"' -searchbase $comp_dn  -properties msfve-recoverypassword,whencreated | sort whencreated | select msfve-recoverypassword -last 1 Windows Server  >  Windows PowerShell

I'm Opposed to monthly payments for Windows 10

i'd rather pay license @ once. renee "modern programming deficient in elementary ways because of problems introduced modern programming." me on fri, 30 jan 2015 13:47:45 +0000, renee culver wrote: i'd rather pay license @ once. that's because there won't monthly payments required for windows 10. did idea there be? paul adare - fim cm mvp Windows 10 Insider Preview  >  Windows 10 Insider Preview Feedback

GP login script causes windows to crash

Image
we have script runs on computers opens our intranet. script crashed windows build 9926 overtime. there way fix this. can't install new build because hp printers update fails everytime. hi, how did determined script caused problem? if problem caused script indeed, what't function of script? for hp printer problem, it's driver compatibility new system problem, better contact hp support confirm issue. roger lu technet community support Windows 10 Insider Preview  >  Windows 10 Insider Preview General

A couple questions RE prepopulating passwords and RODC's

hey everyone- in 1 of our remote locations have 2 rodc's(global catalog , dns) that working fine long network link up. goes down nothing can authenticate against them. question comes in. what 2 rodc's cache everything. credentials including user , computer. if link goes down want 2 servers continue authenticate people nothing happened. obviously they wouldn't updates (new users, etc) while link down, existing ones able authenticate normal.  right have prp set users , computers allowed cache passwords. know need prepopulate these passwords work while link down.  is there limit on how many passwords can cached? , if there way increase it? reading here  and 1 person said there 1500 user limit. have more 1500 accounts need cached right now.  also, best way these passwords prepopulated on regular basis? see can use repadmin /rodcpwdrepl prepopulate list of individual users, having hard time getting work in script. thank in advance!  ...

Windows Server 2008 and the PXE boot Image

hello, i supposed deploy wds on windows server 2008, please let know if can me following stepts or atleast recommend me useful readings/movies/examples etc. 1.how create pxe boot image 2. once pxe boot image done, next step customize master pc using sysprep,  (operating system vista or windows 7)i use reseal mode. so if can me above 2 questions, thankful. recommendation: please recomend experience imagex should installed on wds create/capture image. regards malik, n.a hi,   i suggest referring 1 of 2 articles below add driver boot.wim file:   http://www.vanerkel.net/catalog/index.php?mode=detail&node=259 http://blog.hongens.nl/2008/02/18/adding-drivers-to-wds-boot-images/   note 1: recommend using boot.wim file windows server 2008 32bit or windows 7 32bit disk.   note 2: if deploy windows vista, add windows vista driver network card boot.wim . if deploy windows 7, add windows 7 driver network card boot.wim.   hope helps.   tim quan - msft   ...

why RDP asking users permission !

hello.. i dont know why .. rdp askes users permission before connection ! want connect kicking logged on user without waiting 30 sec respons btw before used kick users without asking them started ask them permission rdp ! thank you hi,   whether want kick user remote control without 30 sec waiting.   do have domain controller? if so, can using gpo set policy. if no, can use using local group policy editor (gpedit.msc) set policy. both of same path.   administrative templates \ windows components \ remote desktop services \ remote desktop session host \  connections   "set rules of remote control of remote desktop services" witch lets specify interaction mode , control level rdp session. enable , choose "full control without user permission" option. logged user won't prompt confirmation.   you can set session time limit active idle rdp service under session time limit folder "neve...

Server name in legalnoticecaption

hello, is there way use wilcard in legalnoticecaption?  need post warning screen on each server , rather on orgizational unit rather on each individual server.  need server name show on screen when users go login server.  have mix of server 2003 & 2008. thanks. only way know experiment changing data types reg_sz to reg_expand_sz hkey_local_machine\software\microsoft\windows\currentversion\policies\system\legalnoticecaption   you can search "display computer name computer" reghack ideas.             regards, dave patrick .... microsoft certified professional microsoft mvp [windows] disclaimer: posting provided "as is" no warranties or guarantees , , confers no rights. Windows Server  >  ...

Windows server 2012 datacenter Hyper-V machine activation

hi, i know how activate other new installed vm on datacenter. so, first did oem windows server datacenter 2012 installation form original dvd. after installation did activation. server activated now, , work perfect. did new first virtual machine installation same installation media, can't activate new version. have 1 oem product key. so question is, how activate second installation, can have product key? thank help. hi kovacskr, for oem license must ask hardware vendor further help, please attention oem vm license using scenario may not transfer original equipment manufacturer (oem) server licenses original computer different computer, more details please refer following article: may move oem license windows virtual machine? http://blogs.technet.com/b/jhoward/archive/2005/05/27/405432.aspx i’m glad of you! please remember mark replies answers if , unmark them if provide no help. if have feedback technet support, contact tnmff@microsoft.com ...

Internet printing(microsoft internet printing) issue on different operating systems

hi, we using microsoft internet printing(i.e. internet printing makes possible client computers running microsoft windows xp professional service pack 2 (sp2) use printers located anywhere in world sending print jobs using hypertext transfer protocol (http)).it has been configured on windows server 2008 r2 64 bit machine.so whenever user having 64 bit machine tried connect server through internet printing protocol he/she can connect printer. but when user having 32 bit os machine try connect server gives driver error or drivers not found error.the issue analyze user request not smart enough differentiate between 32 bit/64 bit drivers.so have idea how cope issue. many in advance. ankit jain senior software engineer @ csc when receive "driver not found", means driver client is not available on server.   since have 64bit server, need add driver 32bit clients or preinstall 32bit driver onto 32bit clients prior connecting print server....

Domain Administrator Password Change Question

hi, there other repercussions changing the  domain administrator password used during domain creation (other services depend on credetials start not starting)?  also, there side effects on applications exchange?  checked on exchange services , domain admin password not used start of them. thanks in advance, allie ts_it if (and other administators) have used practices , not tied services, scheduled tasks, or other application specific user ids domain administrator account can change password without issues. if (or 1 else) has used bad practices , using domain administrator account of above changing password affect items.  time frame noticing affects vary application.  example: schedule tasks affect @ next run time, applications , services stay logged in affect @ next restart. by default administrator password can changed without issue...unless have tied administartor account stated above. while following article not cover above, demonstrate potential ...

Unable to Connect to Windows Server 2012 Core using Server Manager (From Windows 7)

i installed windows server 2012 core data center. enabled remote management through sconfig. able ts core server not able manage core using server manager or mmc server manger snapin. i following error while attempt connect using mmc or servermanager, [main instruction] server manager cannot connect servername. click retry try connect again. [expanded information] connecting remote server failed following error message : ws-management service cannot process request. resource uri (http://schemas.microsoft.com/powershell/microsoft.servermanager) not found in ws-management catalog. catalog contains metadata describes resources, or logical endpoints. more information, see about_remote_troubleshooting topic. when try enable-netfirewallrule -displaygroup "remote administration" on powershell, error get, enable-netfirewallrule : no msft_netfirewallrule objects found property 'displaygroup' equal 'remote administration'.  verify value of prope...

Automate a login script and exit Website - Problem with login in function

Image
hello all,  i've started working on script login site automatically , have output log file.  the problem have button (login nutton) line of code in script, i'm not sure if working or not , need , log file include url , success or fail next url.  eventually -content txt file , have sites in list same login   (the inspect elemment feature on login page (chrome) shows these details login button)  function loginie { $ie = new-object -com "internetexplorer.application" $ie.navigate("http://url.com") $ie.visible = $true { sleep 5 } while ( $ie.busy ) $doc = $ie.document $user = $doc.getelementbyid("login") $password = $doc.getelementbyid("password") $submit = $doc.getelementbyid("submit") $user.value = "user1" $password.value = "user2" $submit.click(); $ie.quit(); $ie.document.body | out-file -filepath c:\weblogin.txt } hi ritesh, please try scri...

Windows 10 Technical Preview Breaks Rasphone Process

i reposting question have windows 10 , rasphone process. have simple c# app connect vpn.  it working fine windows 8.1 broken in windows 10. code is: process rasphone = new process(); rasphone.startinfo.filename = "rasphone.exe"; rasphone.start(); process seems try connect disconnect right away! so tried same app latest build 9926, , connect vpn via above code.  however, worked once!  somehow, code has made "permanent" changes o/s files , stops working.  benjamin yu Windows 10 Insider Preview  >  Windows 10 Insider Preview Feedback

WSUS clients stop updating and reporting.

hello i have   trouble between wsus server , clients. there 5   of ad servers in same domain, , on of ad server wsus server. more   1800 of wsus clients in domain. ・server os:   windows server 2008 r2 sp1 ・client os:   windows7 sp1 ・wsus   version: 3.2.7600.226 there no   problem @ first, clients stop updating , reporting 1   one. and   20 of clients work fine.. so checked   windowsupdate.log following. (i changed   server url , client name too.) can   please me out trouble? regards, kim. 2015/12/14 08:26:45:912 1024 1.00e+01 service ************* 2015/12/14 08:26:45:913 1024 1.00e+01 service ** start **   service: service startup 2015/12/14 08:26:45:913 1024 1.00e+01 service ********* 2015/12/14 08:26:46:032 1024 1.00e+01 agent   ...