Posts

Showing posts from January, 2015

How to select files by date and copy them?

can me translate cygwin bash powershell? /usr/bin/find . -type f -newerct '2 day ago' ! -newerct '1 days ago' -exec cp {} e\:/ \; this script finds files in current directory older 1 day , younger 2 days old copies them e drive. how do in powershell? thanks! siegfried siegfried heintze $min = (get-date).adddays(-1) $max = (get-date).adddays(-2) get-childitem | ? {$_.lastaccesstime -le $min -and $_.lastaccesstime -ge $max } get-childitem | ? {$_.lastaccesstime -le $min -and $_.lastaccesstime -ge $max } | % {copy-item  $_.fullname e:\ } life short, enjoy cyreli Windows Server  >  Windows PowerShell

Task Scheduler Task runs and shows Operation completed Successfully but it doesnt give the actual result

dear admins, i have scheduled task(.bat file) in windows server 2012  that should run every day morning 6.30am . see operation completed actual result of .bat file doesn't start. but when run task manually right clicking on scheduled task , run works. i observed task runs automatically on every sunday. no other tasks running during time or near by account used(service account) run task working properly. selected  run when user logged on or not along higher privileges(unchecked not store passwords..for have verified , disabled " not store passwords ...option in secpol.msc > local security>> security >>) under actions tab, under program/script >> gave complete path , under add argument >> nothing mentioned. note: there other 2 tasks says operation completed without triggering main .bat file. request in resolving this. thanks you.     hi all, as mentioned earlier running service account, i've replaced service

WSUS server 3.0 sp2

hi i have removed wsus server cant remove internal database, using msiexec /x {ceb5780f-1a70-44a9-850f-de6c4f6aa8fb} callerid=ocsetup.exe have windows 2008 server standard sp2, below log report, please assist network under virus attack!! === verbose logging started: 2015/08/11  16:29:37  build type: ship unicode 4.05.6002.00  calling process: c:\windows\system32\msiexec.exe === msi (c) (dc:38) [16:29:37:623]: resetting cached policy values msi (c) (dc:38) [16:29:37:623]: machine policy value 'debug' 0 msi (c) (dc:38) [16:29:37:623]: ******* runengine:            ******* product: c:\windows\sysmsicache\wssee\ssee_10.msi            ******* action:            ******* commandline: ********** msi (c) (dc:38) [16:29:37:639]: client-side , ui none or basic: running entire install on server. msi (c) (dc:38) [16:29:37:639]: grabbed execution mutex. msi (c) (dc:38) [16:29:37:701]: cloaking enabled. msi (c) (dc:38) [16:29:37:701]: attempting enable disable

Hyper V windows update install order

what correct procedure install windows updates on server 2012 r2 14 hyper v servers running on it? update host first, reboot , update hyper v's , reboot them .. or? thx you have mixed terms in here, let me first restate think asking. have single windows server 2012 r2 system hyper-v role installed. on running 14 guest vms (not hyper-v servers, since hyper-v server not supported guest vm). should update host (what calling core?) first , update guest vms (hyper v's?)? there no fixed answer this.  depends on business needs , how want run environment.  technical point of view, doesn't make whole lot of difference.  business standpoint, rebooting host hyper-v system take down vms, need schedule maintenance period when not cause business impact.  14 guest vms, can rebooted individually create least impact.  or, patch/reboot during single maintenance period.  makes sense environment. . : | : . : | : . tim

Moving a website to a new server

we moving our website new server new ip. changing dns records takes few days kick in , requests may end in old server. want forward requests old server new server. both servers have 1 nic , single ip address , run windows server 2003 r2. running 2 copies of website on both servers until dns changes finalize not option. hi,   you can use html redirect page or iis http redirect function solve issue.   for detailed information, please refer following article:   iis 7.0: configuring http redirection in iis 7.0 http://technet.microsoft.com/en-us/library/cc732969.aspx   html redirect http://www.instant-web-site-tools.com/html-redirect.html   thanks. this posting provided "as is" no warranties, , confers no rights. Windows Server  >  Windows Server General For

How to configure authentication in IIS 8 from command line

Image
(i hope got right forum.) from command line in windows server 2012 default web site how i: (1) remove existing providers windows authentication , configure negotiate , ntlm, in order. (2) configure extended protection off. (3) confirm enable kernel mode authentication selected. powershell seems obvious choice, built-in command line solution work. thanks in advance hi, according problem description, can iis related issue. based on current situation, may refer following forum , ask question. in way, issue can fixed effectively. iis forum: http://forums.iis.net/ regards, arthur li technet subscriber support if technet subscription user , have feedback on our support quality, please send feedback here . arthur li technet community support Windows Server  > 

create a shadow group to support fine-grained password and lockout policies

hi, apply feature fine-grained password , account lockout policies there must shadow copy of membership of ou, because can not apply fine-grained policy directly ou. have read there no tool or command line create , maintain membership of shadow group update. solution might create vbscript or script. how powershell script? has done? in advance hello, please see http://ahultgren.blogspot.de/2011/07/shadow-groups-in-active-directory.html http://tookitaway.co.uk/ad-shadow-groups-with-windows-powershell-an-update/ additional questions powershell please ask in http://social.technet.microsoft.com/forums/windowsserver/en-us/home?forum=winserverpowershell&filter=alltypes&sort=lastpostdesc 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 diagnostic tool Red on black screen

Image
hi all, a new hp server came in , have been having issues. narrowed down maybe harddisk or os , doing windows diagnostic tool determine if there memory issues. lo , behold, attached pictures seen. i'm seeking advice people have seen or have idea of means. i apologise bad images in advance. regards, x64 exception [an exception/error occurred in 64bit cpu instruction] nmi detected [a non maskable interrupt detected, aka exception/error not masked/suppressed/handled] check iml [this seems hp specific term, integrated management log, form of error log kept hp hardware] lbrs [last branch records, stack contains cpu instructions , instruction pointers] imagename + offset: memtest+00ae85h [the executing program , address in memory being referenced] this suggests me running memtest software utility, "crashed" fatal error, , hp-specific feature, integrated management log may have event/error record logged event. none of has windows, as the memtest sof

Rename files recursively

hi expert, i having hard time renaming files within subfolders, have script: get-childitem  -recurse | {$_.name -match "^(_2014-|2014-)"} | % { rename-item $_ "_000000$($_.name)"} it rename files on current folder in subfolders keeps throwing error; rename-item : cannot rename because item @ filename  does not exist. appreciated regards here again: get-childitem -recurse -file -include '2014*','_2014*' | foreach-object{ rename-item $_.fullname ('{0}\_000000{1}' -f $_.directory.fullname,$_.name) } watch out ther no whatif time.  ¯\_(ツ)_/¯ Windows Server  >  Windows PowerShell

NAP XP SP3 problems when SQL Logging

hi, i have used following dhcp nap step-by-step guide configure poc environment: http://www.microsoft.com/downloads/details.aspx?familyid=ac38e5bb-18ce-40cb-8e59-188f7a198897&displaylang=en first thing noticed xp client reports incorrect compliant , non-compliant states. so found other threads here: http://social.technet.microsoft.com/forums/en-us/itproxpsp/thread/f7abe0f2-0186-428c-9252-9d22b03dd496 and tried setting on client: [hklm\system\currentcontrolset\services\dhcp\parameters\dhcpglobalforcebroadcastflag\0] "0"=dword:00000001 but problem still persists....i can disable firewall, windows updates, have no av product installed...and nap client reports non-compliance, a few minutes later says compliant. then found little anomaly: if not log sql; nap client seem report work correctly. but moment configure nps logging sql, nap client not work - can have disable on client (firewall, av, etc) , napstat displays healthy system. for test environment, running single vm windo

LDAP Over SSL - 3rd Party - Certificate Request

i generated certificate request using instructions provided godaddy pointed me iis manager create request. have received ssl certificate , installed per instructions. can pull certificate remotely on port 443. need use certificate sldap on port 636. connection fails on port. found kb321051, in there statement says must use schannel cryptographic service provider generate key. mean generate key using "certreq -new request.inf request.req"? request iis mgr work and if there else wrong?   additionally, did bind certificate port 636 , show when run "httpcfg query ssl". using openssl following error "7428:error:140790e5:ssl routines:ssl23_write:ssl handshake failure:.\ssl\s23_lib.c:188:"   windows 2003 sp1 hi, if certificate godaddy not meet requirements mentioned in kb article, afraid need request ldaps certificate enable ldaps. thanks. this posting provided "as is" no warranties, , confers no rights.

Weighted remote sessions

i configuring window system resource manager remote desktop services. when try configure weighted remote sessions, can add domain groups. cannot add local group (servername\groupname). can add local user (servername\username). is behavior design, or missing something. is possible use powershell configure weighted remote session. configuring single server fine using gui. make automatic new server deployments. gert mcitp sa, ea & va hello gert, i believe design. have never used local groups though all my servers part of domain, , i'd rather use domain groups anyway. settings wsrm plain registry keys should able use powershell change settings.   regards robert maijen Windows Server  >  Remote Desktop Services (Terminal Services)

WSUS synchronization problem

wsus server not synchronize. have checked services found  bits service disable, have changed the start option automatically start , set recovery option restart first , second failure. was synchronize after restart facing same problem. and   bits service had disable. automatic service working good net logon services good rpc (both) working good all dependency services are working  trend micro using (client pack) any 1 have suggension can fixed it. rakesh kumar hi clarence, i have checked our group policy " expand  computer configuration , then  administrative templates , then  network , then  background intelligent transfer service"   its not configured bits service. but problem has been solved this behavior due bmalicious,  detail link - http://support.microsoft.com/kb/890830 , download -  http://www.microsoft.com/download/en/details.aspx?id=16     and need set bit service as start up type manually whenever update service start time set

Is it possible to connect to windows desktop sharing using standard rdp client?

ms's desktop sharing api uses axrdpviewer open invitation string connect windows desktop sharing. is possible connect windows destop sharing using ms's "remote destop connection mac" , similar rdp client? thanks   hi, windows desktop sharing multiple-party screen-sharing technology. key scenarios include remote assistance, real-time collaboration , conferencing, , video communication. remote desktop services, session created when user connects remotely through remote desktop protocol (rdp). windows desktop sharing, local desktop can transmitted on rdp connection without creating additional session. there 2 participants in windows desktop sharing: sharer , viewer. sharer system screen being shared out, while viewer system can view sharer's screen. if desktop sharing or controlling, can use remote control, can monitor actions of client logged on terminal server remotely controlling user's session session. remote control allows either observe

Capacity\Load balancing of Network Policy Server

2 network policy server , want have load balancing. nps proxy way out? , how measure performance of nps , how determine capacity of exiting nps server. hi tokiki, >>2 network policy server , want have load balancing. nps proxy way out? yes, please check link below further understanding: load balancing nps proxy https://technet.microsoft.com/en-us/library/dd197433(v=ws.10).aspx >>and how measure performance of nps , how determine capacity of exiting nps server. for nps performance, please check link below: best practices nps https://technet.microsoft.com/en-us/library/cc771746(v=ws.10).aspx best regards john please remember mark replies answers if help. if have feedback technet subscriber support, contact tnmff@microsoft.com . Windows Server  >  Network Infrastr

Activate Windows 2012 R2 with different language product key

is posible activate windows server 2012 r2 english version product key of spanish version ? in advance i think product keys sku dependent, should not language dependent     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 2012 General

Changed WSUS Parent (Upstream) Server, computer groups no longer correct

our wsus environment consists of parent server in our administrative office , 9 replica servers in our branches. each branch has wsus computer group corresponds branch , assigned group policy. parent server died , replaced new server different name. i updated name on each of replica servers , synchronized them. reason computers no longer assigned to their groups , show unassigned. when try change group membership using wsus snap-in, change membership option remains grayed out. ideas how can these appropriate groups? this may issue of guids. computer groups created on new upstream server have different guids groups replicated replica servers. clients, however, still reporting original groups, though replicas have "new" groups -- result groups clients reporting don't exist. run wuauclt /resetauthorization /detectnow @ 1 or more clients force deletion of targeting cookie, allow clients obtain new group identification information replica servers. if resolves issue machines

Group Policy

we using win2008r2 pdc we wants update service packs client meachines xp , windows 7 through gp pleae help  howdie!   am 01.12.2010 05:42, schrieb venkatesanmani: > using win2008r2 pdc wants update service packs my > client meachines xp , windows 7 through gp pleae help   so want deploy service packs clients using group policy? can easily, long packages/service packs come in msi files. win7 uses msu files (ms update), group policy can't deploy natively -- you'd have script it.   have looked wsus? it's update distribution system syncs with windows update , distributes updates clients (not windows, there's office, windows defender, forefront, visual studio, other server products, ...). uses built-in windows update facilities in windows clients. may worth look.   cheers, florian   blog: http://www.frickelsoft.net/blog Windows Server

Windows 2012 Virtual Remote Desktops Printer Redirection not working

hi, when connect virtual desktops on remote gateway via rdweb. redirection of printer not working.the virtual desktops , clients running windows 7 rdp 8. hi, pls check see whether integration service has been installed on vm.if issue still persists,pls try install printer drivers on vm see whether local printer redirected. regards, clarence technet subscriber support if technet subscription user , have feedback on our support quality, please send feedback here . 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  >  Remote Desktop Services (Terminal Services)

cannot upgrade to server 2003 enterprise edition sp2 from standard edtion sp2

i have server 2003 standard sp2 running in our enviroment. trying upgrade enterprise edition sp2 because hitting 4gb limitation imposed by standard edition . when try upgrade enterprise edition using our original cds message telling me installing previous version of server 2003 (our original cds sp1). how can upgrade sp2 enterprise? hi,   this disk issue.   you may try uninstall sp2 on windows server 2003 standard first , use windows server 2003 enterprise (with sp1) cd upgrade system. after that, install sp2.   hope helps.   tim quan - msft   Windows Server  >  Windows Server General Forum

Forest trust failing

Image
i have 2 domains both running server 2012 r2. these 2 domains/companies have merged created forest trust between 2 resources can shared. the problem having every fortnight trust fails , have go in , re-create trust.  before re-creating trust, try validate message,  im not sure cause on administrating 2 servers. any ideas appreciated, thanks hello, based on understanding, trust failed every night , can re-create without issue, please check there script or scheduled task remove trust every night. may event logs check there errors or warnings related. regards, yan li please remember mark replies answers if , unmark them if provide no help. if have feedback technet subscriber support, contact tnmff@microsoft.com. Windows Server  >  Windows Server 2012 General

Domain Controller win't reach gateway or other networks after network failover

hello! yesterday hade unwanted network failover in our "user network". after failover our physical domain controller won't reach outside current subnet. our virtual dc work should. both domain controllers running dns , dhcp. problem seems tied ip-adress on failing dc, when change static ip-adress network communications seems fine. our network technicians thinks arp problem, tried clear arp cache without success. any or tips very appreciated! os: windows server 2012 r2 kind regards, anthon hi, i dont´t think changing ip addresses of domain controllers idea. supposing have 1 subnet , 1 domain 2 domain controllers... both dcs running dhcp? same configuration dhcp failover deployed? otherwise won´t networking perspective. radek Windows Server  >  Windows Server 201

Domain Admin "Access Denied" when attempting to create new Group Policy

i've inherited domain created employee no longer company. (2008r2, forest and domain functional level.)  sysvol replication appears working fine, i'm not seeing errors. when attempted create new group policy, i'm member of domain , enterprise admins groups, i got access denied message.  digging found ntfs permissions for mydomain\administrators on c:\windows\sysvol\sysvol\mydomain.com\policies read&execute, , list folder.  on other domains i've checked administrators group has full control based on combination of file , folder permissions.  these questions: is there harm in manually changing ntfs permissions reflect appears default on other domains have checked? do ntfs permissions replicate sysvol folder have change permissions on pdc , rest of dcs pick or have manually change them on dcs? if answer above question "no", once permissions changed on pdc new dcs stood have correct permissions on sysvol folder? thanks, tom > there har

Authentication issues after DC save mode

i told post here exchange 2010 forum. we installed exchange 2010 windows virtualized 2008 ts environment had no exchange. everything  ok @ first , situation arose dc went save mode during windows 2008 server backup , authentication problems began - users logged in @ time of dc save state happened asked enter credentials , rejected correct credentials. managed log in after several attempts. did not. problem widespread , random though dc  save has not occurred again. users asked name/password , rejected many times before getting in , others in - , users in can't next day , vice versa. , time in middle of session user asked name , password , again can either accepted or rejected after several attempts.  the other fact here outlook web access works without problem users.  any ideas going on? look @ kb: http://support.microsoft.com/kb/875495 can it. best regards, alexander trofimov Window

Always-On VPN Profile Deployment not working

hey guys, i followed https://docs.microsoft.com/en-us/windows-server/remote/remote-access/vpn/always-on-vpn/deploy/always-on-vpn-deploy aovpn deployment guide , did manage succesfull vpn connection using manually created template profile. what not work deploying vpn profile powershell using sccm. created ps1 file , deployed sccm package written in guide. but although see "success" in sccm deployment, don´t see vpn connection created on user side...and don´t have idea @ now... somebody has experienced similar behaviour or give me hint look? thanks in advance lbh hi, please run ps1 file on client manual.to check script if work normally. you could  have asked in powershell forum,if have issue script. https://social.technet.microsoft.com/forums/windows/en-us/home?forum=winserverpowershell best regards, frank please remember mark replies answers if , unmark them if provide no help. if have feedback technet subscriber support, contact tnmff@mi

Active directory - ldap attribute createTimeStamp in Windows Server 2008 R2

to check how many users created in past 1 year particular domain queried following, (&(objectcategory=person)(objectclass=user)(!(samaccounttype=805306370))(createtimestamp>=20090831022227.0z)) i have 2 domain controllers, dc-1 windows server 2008 , dc-2 windows server 2008 r2 , query works fine 2008 server & found there 1500 new users in last year, 2008 r2 server gives 64 users. have made search domain level & different ou levels , there no change in result count(64) users different. have checked other domain dc's , other servers works fine , 2008 r2 server alone gave same result count, 64. have confirmed not replication issue. need help. howdie!   am 06.09.2010 07:33, schrieb arunsubu: > check how many users created in past 1 year a > particular domain queried following, > > **|(&(objectcategory=person)(objectclass=user)(!(samaccounttype=805306370))(createtimestamp>=20090831022227.0z))| > ** >   does sa

Mac and Microsoft Remote Desktop

if download microsoft remote desktop can download programs run on windows operating system? hi, from description seems want download software remote server on mac device when perform remote desktop mac. if misunderstand please clarify points. you can download mrd mac below link. https://itunes.apple.com/in/app/microsoft-remote-desktop/id715768417?mt=12 hope helps! thanks. dharmesh solanki please remember mark replies answers if , unmark them if provide no help. if have feedback technet support, contact tnmff@microsoft.com. Windows Server  >  Remote Desktop clients

Failed to move virtual machine storage

hello guys. i trying move vm hyper-v 2012 r2 failover cluster non clustered host (2012). let's vm need move outside cluster called vm1. vm1's vhdx on cluster's csv. vm1 resides on node hv05 cluster called cluster01. the host outside cluster (but in same domain) hv25. i've created share folder on hv25 called sharedfolder (\\hv25\sharedfolder). i've shared folder domain admin user. in aduc i've created constrain delegation using kerberos cifs service on bothe cluster01 , hv25 i tried move vm1's storage shared folder hv25. the error is: migration did not succeed. failed copy file c:\clusterstorage\volume2\vms\vm1\vm1.vhdx \\hv25\vm1\vm1.vhdx: general access devnied error (0x80070005). in cluster's machine event viewer get: storage migration virtual machine 'vm1' (d13daec6-f811-427d-8a06-8f960b3f3b3f) failed error 'general access denied error' (0x80070005). eventid 20820. can me understand missing, please? thank much.

new-partition but supress the dialog

hi, want initialize, partition, , format using powershell on windows server 2012. the following 3 lines   works, new-partition step opens dialog "you need format disk in drive g: before can use it" .  i ran powershell window , tried powershell ise, both opened admin privilages. how can suppress dialog? maybe issue not powershell rather windows server 2012 environment? >>>>>>>>>>>>>>>>>>> initialize-disk -number 2 -partitionstyle mbr -confirm:$false new-partition -disknumber 2 -usemaximumsize -isactive -driveletter z get-partition -disknumber 2 -partitionnumber 1 | format-volume -filesystem ntfs -force -confirm:$false -craig (sql server user education team) // posting provided no warranties, , confers no rights. hi craig, i haven't tested this, try piping new-partition cmdlet out-null. edit: looks out-null suppress console output, not explorer window. don't retire technet!

NTFS events 138,136,134 unexpectedly

our sbs2011 (server 2008r2 sp1) started logging these errors.  hardware year-old fujitsu hardware raid-10, there disk failure & replacement several months ago since fine until now.  patrol read , mdc on raid adapter (lsi megaraid d2616)  both run regularly without reporting errors. 21 oct server logged ntfs 138 " the transaction resource manager @ c:\ encountered fatal error , shut down. data contains error code"    immediately followed ntfs 136 twice, , again @ 10pm backup  " the default transaction resource manager on volume c: encountered error while starting , metadata reset."  following advice on answers.microsoft.com i ran fsutil resource setautoreset true c:\ , rebooted.  ntfs 134 " the transaction resource manager on volume c: encountered error during recovery. resource manager continue recovery."  was logged 12 times on reboot, , again 12 times @ every 10pm windows server backup next few days.  28 oct there power outage, on restart

Windows 2012 hung on rebooting after installing hyperv

i have laptop dell inspiron 1526 following hardware processor: amd athlon 64x2 dual-core tk-57 1895 mhz according amd web site http://www.amd.com/uk/products/notebook/processors/athlon-x2/pages/athlon-x2-dual-core-features.aspx supports virtualization memory: 4gb ram hard disk: c = 100 gb, d = 132 gb wireless network card: dell wireless 1395 wlan mini-card laptop running windows 7 ultimate 64 installed on c drive , attached vhd (windows server 2012) on d drive , configured dual boot. i booted windows server 2012 datacenter evaluation and installed , runs well. i updated bios latest version , enabled amd-v , no-execute enable bit in bios completely shut down laptop , disconnected power cord , battery. i installed hyper-v role , rebooted after starting hung on before showing log in screen , had hard boot , tried use logging configuration none of them worked except safe mode checked event viewer , found following error dcom got error "1084" attempting st

Remote Desktop Connection to Hyper-V Copy & Paste Works Intermittently

windows server 2008 x64 rtm hyper-v rc1 per subject title, copy , paste , host os vm in hyper-v works consistently. connection via remote desktop connection (mstsc.exe) shipped default ws08. thanks. technet forum moderator - http://www.leedesmond.com/weblog/ type of objects using copy/paste? as happening mstsc.exe - it's unlikely hyper-v issue. this posting provided "as is" no warranties, , confers no rights. Windows Server  >  Hyper-V

Bulk User Create

i have 500 user, need create 500 user in ad few min. have script or power shell command  crate 500 user @ time. kindly check these sites http://www.manageengine.com/products/ad-manager/active_directory_bulk_user_management.html#creation http://msdn.microsoft.com/en-us/library/ie/ms974568.aspx http://ss64.com/nt/addusers.html   mohamed abd elhamid abd elaziz microsoft system administrator blog: http://mabdelhamid.wordpress.com/ Windows Server  >  Directory Services

New print driver impacted existing printers - why?

hi friends, today added new driver our print server have done many times before, time in adding new driver, other printers of same manufacturer (canon) stopped working, device on everyone's computer showing "driver update needed". the new driver idv-adv c5250. printers stopped working c5051's. driver added @ point, no other action taken, driver not used printer (hardware hasn't arrived yet) simple step of adding new driver in preparation new printer causes major issue. to resolve on windows server 2008 r2 print server, selected 1 of existing canon printers , set driver new driver added. of course did not work setting driver did resolve issue... kind of. users required delete , re-add printer(s) on computers. can see not popular fault. although resolved it, want understand why occurred. can help? need make sure doesn't happen again. thought maybe printer isolation might can't set driver isolated until after it's added can you? thanks.

Map a share on windows 2008 cluster

i use shares sql server, on clustered sql server ( windows 2003 r2 )  which has ip of 1.2.3.4  have share called say, myshare; i'll access server using \\1.2.3.4\myshare   copy backup.  don't seem able on windows 2008 , i'm told each share have have account, login , separate ip address. true, can not assign share ip of sql server on windows 2008 cluster? i've read through cluster blog , lots of docs @ stage seems sql server cannot have share resource, clarification appreciated. hello colin,   i understand when tried access file share on windows server 2008 cluster received errors. however, still unclear exact issue. have better idea problem, please clarify following:   1. mentioned there share on cluster. create share on cluster node or file share in sql server group? if using share on cluster node, please create file share in sql server group see whether works?   2. exact error message when try backup files share? please upload screen shot or let know exact err

Logon Attempt Failed

hi all, i taking windows 8 mcsa , such setup winodws 8.1 in lab environment study/practice.  i have windows server 2012 r2 standard installed on server , run windows 8.1 enterprise in hyper-v purpose of quick rebuilding. have installed both oss if attempt rdp vm desktop running 8.1 pro message "logon attempt failed". google tells me need allow rdp through windows firewall has not worked , have tried disabling windows firewall both on windows 8.1 vm , win server 2012. curiously, can rdp vm windows server 2012. any advice appreciated. hi first enable rdp access turnoff firewall ensure no block ensure hyper v switch able communicate host or outside network ie same network ping pc , see reply if above works, should okay rdp Windows Server  >  Hyper-V

Unable to add server when using File Server Migration Tool

hi, i need move shared folders location, , want keep security settings , share permission. able use robocopy or xcopy command keep security settings, not able keep share permission. after researching google, recommends use file server migration tool because can keep share permission. however, during process when tried add source file server, got following message: cannot read file attributes \\sourceserver\vol1$\foldername system error: 2, system cannot find file specified i tried add other test server without message pop-up. does have idea means? please , thanks. hi, after rebooting file server, able add server.  thank information.       Windows Server  >  Migration

dsquery to dsget

i'm trying write query output list of users member of particular ou , particular security group. i know gives me users: dsquery user ",ou=user accounts,dc=corp,dc=com" -inactive 43 -limit 10000 > query.txt and know this gives members of group: dsget group "cn=app_doc,,ou=application,ou=groups,dc=corp,,dc=com" -members > c:\query.txt   what need them pipe 1 result next , output users match both.  appreciated one issue can't filter on ous in ldap query. what tool adfind   http://www.joeware.net/freetools/tools/adfind/index.htm adfind -b "dn of ou here"  -f "&(objectcategory=person)(objectclass=user)(memberof=dn of group)" samaccountname   that search ou specify , users member of group specified in dn.   thanks   mike http://adisfun.blogspot.com ; Windows Server  > 

NAP - Getting started

hi, is there short , effective documentation nap. i need information like: * have install sw on nap clients? or server? * have pay nap * can define list of software define them secure company, , when computer connects network , has  software, not listed secure, quarantined. thanks r. hey razor. can give quick answers these, our blog wonderful source of data. nap "in box" on vista , longhorn server. nap client is shipping on windows update xp / windows server 2003. nap server pieces shipping in longhorn server. you have purchase longhorn server nap server pieces. client should covered answer 1.) this possible accomplish nap have public api documented on msdn , require additional software. see can no additional software, check out blog post . these  3rd party vendors working to support/extend nap. great time show interest in nap , let your preferred vendors know features see.   jeff.sigman@online.microsoft.com nap release manager http://blogs.techn

Slow display when I want to list users/groups on a member server. The member is sending queries to the root DC, why ?

hi, we have several member servers have problem. when right click on folder/properrties/security , click "add", have wait several seconds (10 seconds) beforce can add user. i have same problem if go lusrmgr.msc, , try add user group example. if sniff network activities, can see member server sending requests root dc on 139 , 445/tcp ports. those ports blocked member servers dc. do know, why have problem ? i precise dns configuration ok (the server pointing dc-dns). thanks. for me not directory issues,because when right click takes lot of time give display. more performance issue. make sure system running latest service pack & patches. antivirus can culprit too. suggest check system using perfmon. give try chkdsk /r in read mode scan issue disks. http://msdn.microsoft.com/en-us/library/aa645516%28v=vs.71%29.aspx boot server in clean mode & see there got same issue. regards awinish vishwakarma| check blog disclaimer : posting p

unable to use remote desktop to access a microsoft server

i have been able access server yesterday , today nothing. down loaded beta version today did not work.  i have been able access server yesterday , today nothing. down loaded beta version today did not work.  hi, what error did when failed ? please check event viewer on windows server , there related events ? need more information analyze issue. best regards cartman please remember mark replies answers if help. if have feedback technet subscriber support, contact tnmff@microsoft.com Windows Server  >  Remote Desktop clients

Word 2010: Changing the list of templates shown when I click "New"

when click file | new  i see list of available templates  and office.com templates . under available templates folder called my templates  where of self-created templates listed. that seems many steps - more in word 2007, if remember correctly. is there way me customize word own templates visible click file | new ?  you can add new document or template button quick access toolbar. stefan blom, microsoft word mvp Microsoft Office  >  Word IT Pro Discussions

How do I find a word in an XML file

and if not there , if is, else. specificaly looking node in web.config file. if there, check value of attribute. if not there want add node, know how do. (thank all!) i thoght had working last week, says can't run process on null value when node not found. here string causes error: $wctochange = $xml.configuration."system.webserver".security.requestfiltering.requestlimits.getattribute("maxallowedcontentlength") hi olddog1, if want node xml-file, better use xml "system.xml.xmldocument object" in powershell have access xml specific methods , properties. "select-string" handle xml normal txt document , string objects, isn´t wrong @ want show solution: $path = "c:\test.xml" $xmldata = [xml](get-content $path) $xmldata.selectnodes("/rootnode/node2/requestlimits") shows values of requestlimits nodes. more xml properties , methods go here http://msdn.microsoft.com/en-us/library/y3y47afh.aspx  or call ge

Folder Redirection for DOCUMENTS folder, does not redirect, but all other folders do.

ok, here issue, have banging our heads over.  have mixed 2003/2008 domain, xp clients , few win7 clients.  on our 2008 ad server, have setup folder redirection favorites, downloads , documents(mydocuments).  works fine favorites , downloads, not documents folder.  there no errors in event log , logging folder replication, shows nothing well.  our xp clients working fine, reason or another, documents not redirect.  have ruled out network permission well, since have share open everyone, , testing purposes, have documents pointing there, still nothing.  there special need, enable documents redirect? documents different downloads , favorites folder?  appreciated. user must have take ownership right. С Уважением, Бетке Сергей Сергеевич, http://sergey-s-betke.blogs.novgaro.ru Windows Server  > 

Copy NTFS permissions to a NAS with Robocopy

hello, i'm using robocopy copy "home" folder ntfs permissions nas synology. theses equipment on domain, named xxxxx in post. permissions on "home" folder explicit, , not inherited parent folder. note synology nas have windows permissions activated. goal create backup of "home" folder nas permissions. here robocopy script i'm using : ------------ set rep_log=c:\script\log set rep_sync_data=\\srv1\e$\home\ set rep_sync_nas=\\nas-synology01\test01\backup\home\ robocopy %rep_sync_data% %rep_sync_nas% /mir /sec /zb /np /xf  thumbs.db /r:2 /w:5  /log:%rep_log%\synchronisation_backup_nas.txt ----------- robocopy script works well, , files copied. except one. on "home" source folder, can find on permission list xxxxxx\administrators group. (explicit permission) but, unfortunately, once folder copied nas, change xxxxx\administrators group to nas-sysnolog01\administrators