Posts

Showing posts from February, 2014

Windows Storage Server 2008 - unzip with drag & drop from Windows 7 client fails

hello. as asked question in german , got no answer try in english now. i have following problem: we have windows sbs 2008, store our files. if opens zip-file on network share from windows 7 client (64 bit) possible drag & drop content (multiple files) directory. far works expected. we have additional windows storage server 2008 integrated in our domain (buffalo tera station ws-qv8/r5), store files. if opens same zip-file on network share of server windows 7 client , tries drag & drop content following happens: 1. 1 file extracted , display file refresh of explorer view needed. 2. when drag & drop action repeated second file extracted not alle files extracted , there no error message or indication why happens. the behaviour reproducible windows 7 client (32 bit). if try drag & drop files zip-file on windows storage server network sahre directory on sbs network share files extracted correctly. on windows storage server itself all files extra...

CRL configuration

hello, situation. within our company want solid configuration our crl availability without risc of downtime crl isn't available. configuration follows: system configuration: windows 2008r2 every intermediate ca creates every hour crl, valid 4 hours. make copy of crl , resign validity period of 7 days (just simple certutil command). both crls have of course diferent names , checked again , pushed 2 webservers , published there. done every hour. in our certificates use of short crl (4 hours) stated first , second 7 days crl. if reason crls aren't published in time , short crl not valid anymore, checking done against 7 days crl , 1 localy cached on clients. if things went , crl publishing fixed, clients automatically return short crl after 7 days. in past looked @ possibility delta crls, not option because: use different environment (linux, zos, ..) doesn't support delta's if base crl of delta crl file reason corrupt of not available whole crl checking ...

Keyword filter search for rules in Windows Firewall with Advanced Security

hi all, i wondering whether help, want carry out keyword filter search rules have icmp in title in windows firewall advanced security , wondering possible in either gui or powershell. appreciated. kind regards, rocknrolltim hi, to txt: get-netfirewallrule -name *icmp* | out-file x:\filename.txt get-netfirewallrule -name *icmp* > x:\filename.txt to csv: get-netfirewallrule -name *icmp* | export-csv x:\filename.csv -notypeinformation -force to html: get-netfirewallrule -name *icmp* | convertto-html | set-content x:\filename.html suggest use csv format. best regards cartman please remember mark replies answers if help. if have feedback technet subscriber support, contact tnmff@microsoft.com Windows Server  >  Security ...

DHCP Split-Scope Configuration with servers in separate forests

we have 2 separate forests trust on our network. systems in both forests receive dhcp addresses server in domain 1. it t possible setup dhcp split-scope using server in domain 2? not have server available in domain 1 use. hi, in general, dhcp not take care domains or forests.  not sure os version of dhcp server, if use windows server 2008 r2, may use dhcp split-scope configuration wizard deploy this. reference link: how configure split-scope using wizard http://blogs.technet.com/b/teamdhcp/archive/2009/01/22/how-to-configure-split-scope-using-wizard.aspx few notes: 1. dhcp servers can communicate each other directly, or through ip routing. 2. dhcp servers can communicate dhcp clients either directly or using dhcp relay. best regards, eve wang  please remember mark replies answers if , unmark them if provide no help. if have feedback technet support, contact tnmff@microsoft.com. ...

GPO Speed/Presidence w/ Folder Redirection

  currently in our environment adopting folder redirection w/ volume shadow copy , offline file sync. our current structure had users saving pst files mydocs, know, cause sorts of issues when folders become redirected. to curtail issue, have wrote login script locate pst files within user's %username% root , allocate them newly designated local repository. the senario: i have 2 gpos configured. 1 gpo called folder_redirection_pst. within gpo contains login script relocates pst files. the second gpo called folder_redireciton_mydocuments, contains required settings redirection (shadowcopy deployment, mydoc redirect configuration, etc). on affected ou have them in respective orders, pst gpo running first. the problem: the script psts runs, @ same time, computer concurently runs redirection gpo, of course creates major fault. the mydocs redirect goes fast moves of mydocs remote server in time takes script traverse %username% directory , move pst files. being these 2 seperate gpos, th...

Cambiar ip Serv Dominio 2008R2

estimados, les formulo la siguiente pregunta , nescesito cambiar la ip mi srv. de dominio cual es el proceso correcto que debo realizar para no tener problemas en mi infraestructura..??? equipo windows server 2008 r2 std roles del equipo:active directory, dhcp, dns, wins, file server,gpo   saludos enzo contreras el cambio en sí no trae problemas, salvo una desconexión momentánea hasta que se registre la nueva ip en el dns y los clientes se enteren del cambio. primero que nada debes cambiar en el dhcp para que entregue la nueva dirección de dns y wins. luego ya puedes cambiar la ip en el servidor, y ejecutar para que se registre en dns: - ipconfig /registerdns - net stop netlogon & net start netlgon lo que creo que convendría sería un reinicio del servidor y de los equipos para asegurarse que toda nueva conexión se haga sobre la nueva ip, y se vacíen los "hostnames caches" algo adicional,...

DFSR Event ID 5012 when other DFS folder working

i got following error on file server dfs enabled:  event id 5012 source dfsr the dfs replication service failed communicate partner fileserver1 replication group executive. partner did not recognize connection or replication group configuration.  partner dns address: fileserver1.test.com  same server has other dfs folder working fine. added new dfs folder , has been 2 days , still not replicate fileserver1.  what wrong?   thanks everyone's in advance.  learn everyday! hi, error occurs when 1 partner attempts establish rpc connection member, unable to. problem may intermittent , resolve automatically. if 2 members obtain configuration data different domain controllers, may have mismatched configuration data due active directory replication reaching 1 domain controller before other. more detailed information, please refer article below: dfsr event 5012 (dfs replication) https://social.technet.microsoft.com/wiki/conten...

Core Infrastructure Server Suite License query

hi, my company had 3 year enterprise agreement started in 2011. under agreement had 50 cis datacentre licenses , 100 cis standard licenses - @ time each license of both types covered 1 physical processor. in 2012 microsoft changed licensing model these products: ------------------------------------------------------------------------------------------------------------------ standard - http://www.microsoftvolumelicensing.com/userights/productpage.aspx?pid=178 as of april 1st 2012 licensing model cis has been changed. licenses acquired under new enrollments effective after april 1st 2012 can license 2 physical processors. customers under existing enrollments of april 1st 2012 (effective on or before april 1st 2012) can continue true licenses under old model under each license can license 1 processor. following migration rights apply licenses these customers: for duration of existing enrollment, customers’ existing , new licenses under old model deemed equivalent li...

How to get ADSites and the FSMO role using Powershell in a domain.

hi all, i wonder if here can me powershell script ad site information domain controllers , fsmo role ? /* server support specialist */ hi maybe helps: get-adforest <domain_name> | format-table schemamaster,domainnamingmaster get-addomain <domain-name> | format-table pdcemulator,ridmaster,infrastructuremaster hope helps. 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  >  Windows PowerShell

Event ID: 2887

log name:      directory service source:        microsoft-windows-activedirectory_domainservice date:          2/15/2012 8:00:35 am event id:      2887 task category: ldap interface level:         warning keywords:      classic user:          anonymous logon computer:      newserver.microsoft.com description: during previous 24 hour period, clients attempted perform ldap binds either:  (1) sasl (negotiate, kerberos, ntlm, or digest) ldap bind did not request signing (integrity validation), or  (2) ldap simple bind performed on cleartext (non-ssl/tls-encrypted) connection    directory server not configured reject such binds.  the security of directory server can enhanced configuring server reject such binds.  for more details , information on how make configuration change serve...

Authorized DHCP servers are not equal with servers in the domain group "DHCP Servers"

hi, in our domain have many dhcp servers , cleaning old dhcp servers. have compaired authorized dhcp servers servers, members of group "dhcp servers" , 2 lists not equal ;-). does know domain group "dhcp servers" used for? should update group? we have windows server 2008, windows server 2008 r2 , windows server 2012 dcs (domain , forest functional level = windows server 2008). thanks, wolfgang dhcp servers group ??? there 2 dhcp groups in active directory: dhcp administrators & dhcp users https://technet.microsoft.com/en-us/library/dd759157(v=ws.11).aspx i think it's group manually created. all "authorized dhcp servers" stored in active directory in configuration partition. "cn=netservices,cn=services,cn=configuration,dc=contoso,dc=com" hth this posting provided without warranty of kind Windows Server ...

Error installing Exchange 2016 prerequisites

Image
hi windows server 2016 vm (hyper-v). trying install exchange server 2016 prerequisites gives below error. what missing? thanks regards looks may 2012 prerequisites? https://technet.microsoft.com/en-us/library/bb691354(v=exchg.160).aspx?f=255&mspperror=-2147217396#anchor_3  might ask on here. https://social.technet.microsoft.com/forums/office/en-us/home?forum=exch2016sd       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 2016 General

Windows server (2012 R2) backup wipe-out to many older copies?!

hello i have 8191gb local backup volume backup store 1 local 4tb volume. backup have more 100 older backups versions current size of 3tb. backup go every 1 hour. free space 5tb. every several days have several backups. wsb wipe out many older copies , have 4 copies today!!! whats wrong??? hi, check if there no shadow copy storage space available on dirve. size of storage area choose determine how many versions of changed files can store. each time snapshot created, volume changes recorded. 64 versions of volume can exist unless shadow copy storage area runs out of space. when happens, oldest shadow copies overwritten new shadow copies. rapid recovery volume shadow copy service http://technet.microsoft.com/en-us/magazine/2006.01.rapidrecovery.aspx best regards, mandy  we trying better understand customer views on social support experience, participation in interview project appreciated if have time. helping make community forums great place. ...

Terminal Services Gateway cannot be installed

i trying setup terminal services gateway on sbs 2008 server. however, installation of role fails "attempt install ts gateway failes. specified package not applicable (error value: 0x800f081e). the "fix network" wizard fails component id # 4 problem - pointing same ts gateway installation issue. i had issue before both ts gateway , network policy , access services not installed, due failed search server installation (sharepoint services 3.0). ias problem resolved following official sbs blog: http://blogs.technet.com/sbs/archive/2009/02/20/the-network-policy-server-service-ias-fails-to-start-or-be-installed.aspx how fix ts gateway issue? rosch hello rajesh, information. however, following procedure outlined in technet article "repair remote web workplace" did not succeed. problem "terminal services gateway service" missing in system. did was: 1. follow procedure outlined in "terminal services not installed": http://technet.m...

black screen of death after warning "Disk 1 has the same disk identifiers as one or more disks connected to the system. "

hi, i having same problem / event warning, 1 second after warning occurs, face black screen of death leaving me no other option switch off , reboot. after reboot can work time far can see there spontaneous re-occurance of same warning , subsequent black screen of death. it hugely frustrating , don't seem able solve it. occurred in w8/w8.1 , w10 tp. hardware seems fine. there no other events occur near time when bsod occurs suppose that. hd (ssd's) seem have unique identifiers don't understand @ all. not matter whether browsing internet, rendering images or leaving laptop untouched (m6500 dell). please help. occurs 3 - 5 times day , seems unworkable. mike i know not hdd cause bsod, try making secondary primary , remove primary. also, hdd might not hardware cause bsod. have check other hardware. knew mine hdd because bsod happened on installation. Windows 10 Insider Preview ...

PowerShell Get-ADUser and the -Server parameter

anyone know how get-aduser cmdlet selects domain controller if -server parameter not specified?  don't want scripts connecting dc on other side of globe, i'd rather not specify dc if don't need to, since dc decommissioned day.  add logic scripts lookup dcs in current site, don't know if need that.  i'm wondering if get-aduser automatically selects 1 in current ad site, or if randomly chooses 1 round robin dns query domain name. also, other monitoring network packets or dc logs, there easy way see dc ad cmdlets connect to? tried -verbose , -debug didn't seem anything. thanks the active directory powershell module uses standard dc locator process, looks closest dc ad web services enabled.  http://msmvps.com/blogs/ad/archive/2010/01/25/how-active-directory-powershell-cmdlets-find-a-dc-running-active-directory-web-services.aspx Windows Server ...

Windows Netlogon open on startup.

hi, we got problem on windows server 2008r2. we removed our logon scripts that were in the ad user profile . since when user logs on , has a netlogon window appears. (\\servername\netlogon\) we have removed our scripts in the netlogon folder, but nothing works . i not know why happens , n othing in the automatic start , checked the gpo and do not see what could open window . advice would welcome . best regards, francis ok, found solution,  attribute scriptpath "blank" instead of (undefined). best regards. francis Windows Server  >  Directory Services

Windows Server 2012 - Supported Virtualization Environments

hello, i'm trying find anythin g microsoft on whether running windows server 2012 on vmware supported; other products provide information, example supported configurations configuration manager http://technet.microsoft.com/en-us/library/gg682077.aspx#bkmk_supconfigvirtualization exchange 2013 virtualization http://technet.microsoft.com/en-us/library/jj619301(v=exchg.150).aspx#bkmk_prereq i know works, , vmware support it, microsoft's position? it's hard find stuff because windows server 2012 virtualization capabilities windows server 2012 offers. the following out of date; http://support.microsoft.com/kb/957006 kind regards, anwar www.windowsservercatalog.com on left-hand side, find server virtualization validation program.  in there find it. .:|:.:|:. tim Windows Server  >  ...

Windows Server 2012 new domain, move users from old "different (single label) domain"

have scenario in old domain server: win 2003 dc single label domain - "ourdomain". goal setup win 2012 dc , move users new formatted windows 2012 domain "ourdomain.com". once create new domain if go clients work station , disjoin them old domain , rejoin new domain no longer have access old files , folders created on workstations. preferred method accomplish goal in least amount of time , least amount of hassle. hi, thanks response. for file migration, use robocopy: http://technet.microsoft.com/en-us/library/cc733145.aspx regards. please remember mark replies answers if , unmark them if provide no help. if have feedback technet support, contact tnmff@microsoft.com Windows Server  >  Windows Server 2012 Setup ...

password hashes

hello, in format stored password hashes on domain controller's (2008r2 , 2012r2)? this old weak ntlmv2 hash, or new format? the below from: http://www.ntdsxtract.com/downloads/activedirectoryofflinehashdumpandforensics.pdf the solution introduced microsoft in order provide protection complex and composed of 3 layers of encryption of 2 layers use rc4 , third layer uses des. in order decrypt hash stored in ntds.dit following steps necessary: 1. decrypt pek (password encryption key) bootkey (rc4 - layer 1) 2. hash decryption first round (with pek , rc4 - layer 2) 3. hash decryption second round (des - layer 3) paul bergson mvp - directory services mcitp: enterprise administrator mcts, mct, mcse, mcsa, security, bs csci 2012, 2008, vista, 2003, 2000 (early achiever), nt4 twitter @pbbergs http://blogs.dirteam.com/blogs/paulbergson please no e-mails, questions should posted in newsgroup. posting provided no warranties, , confers no rights. ...

Function to remove all AD groups from user excluding 1 particular group

we have long script use user termination process.  1 of functions in script finds , removes groups account member of.  have had request if member of 1 particular group, 1 group not removed.  seems should simple accomplish. i have tried many variations , every time removes group others. here sample script removes groups works.: function removegroupsfromuser([string]$username) { $userobj = get-qaduser -identity $username foreach ($grp in $userobj.memberof) { try { $null = remove-qadgroupmember -identity $grp -member $username -erroraction silentlycontinue } catch { $errormessage = $_.exception.message $groupname = $grp.name logmessage -user $username -message "failed remove user group: $groupname" write-output "failed remove $username $grpname" } } } this have tried: attempt1 - removed groups including 1 don't want removed.: function removegroupsfro...

Memory Leak using CertOpenStore on Windows 2008 R2

i have program (runs both 32 , 64 bit ) when using certopenstore results in memory leak on windows 2008 r2 (i haven't tried 2012, code has run years on 2000, 2003, 2008 without issues) sample code reproduce issue: int main( int argc, char** argv ) { hcertstore store; int go = 1; while( go ){ store = certopenstore( cert_store_prov_system_a, 0, 0, cert_system_store_local_machine | cert_store_open_existing_flag, "my" ); if( store ){ //if( !certclosestore( store , cert_close_store_check_flag ) ){ if( !certclosestore( store , cert_close_store_force_flag ) ){ if( getlasterror() == crypt_e_pending_close ){ printf( "!" ); } else{ go = 0; } } } else{ go = 0; } sleep( 10 ); } return 0; } the callstack allocations pretty  (this 32 bit process on 2008r2 box)       heap_entry size prev flags    userptr usersize - state     ...

2012 r2 removal of replicated DFS folders

to ease migration 2008r2 data server 2012r2 set dfs , replicated shares, seemed work out pretty well, users never knew moved 1 server on course of week. now we've changed gpp maps drives point new server @ \\2012r2server\shares (not dfs shares) the namespace itself, \\domain\fs01 contains 8 folders replicating.  i want remove 2008r2 box, decommission permanently.  but 2012 box replicates 2 other 2012r2 servers in namespace, namespace needs remain. so stopping replication isn't sufficient. here's variables: 2012r2 server doubles domain controller, has dfs role (theres no problem de-promoing server btw) , new server data we'd keep 2008r2 server has file services role dfs mgmt, server decommissioned two other 2012r2 servers in fs01 namespace replicate 2 folders should remain in tact. when complete, instead of 8 folders see in namespace, should see one. is post i'm looking do?  http://social.technet.microsoft.com/forums/windowsserver/en-us/35737c1a-...

Snapshot on Exchange 2010 server

Image
hello, i running exchange 2010 in virtual environment. an associate of mine took shapshot of server using hyper v in february. no longer working us. safe delete snapshot , power down server though there 25gb left on hard disc? ive seen merge chew lost of gbs in no time , merge never complete. hi, what’s os version of hyper-v host server? what’s role exchange 2010 server? in windows server 2008 or windows server 2008 r2 hyper-v, correct way delete un-needed snapshots is: delete snapshot power off vm wait patiently avhd merge vhd (depending on snapshot file size, might take long time) power on vm note: after merge complete avhd deleted system. the vm must powered off merge of avhd vhd happen. manually interrupting process can corrupt vhd - hyper-v has checks in place 'do no harm' if merge not successful , leave was. the more constrained disk space system is, longer process takes. there no way predict how long merge take. windows server 2012 support live ...

command to disable scavenging on all zones

Image
hello, i in process reconfigure dns servers scavenging cycle.  there command can use disable scavenging on zones @ once (i have more 1 primary zones)?. what different when enable scavenging @ server level vs. zone level? thanks help.   hi brichardi05, thanks posting here. >we have many primary zones, , wanted find way disable scavenging on primary zones instead of going each zone , uncheck scavenging check box. yes, understand concern need first make sure if have individually configure setting each zone on server, if not can disable @ serve level otherwise base on knowledge have no way @ 1 time in gui need customize script in order allow system finish job in batch automatically each zone. thanks. tiger li tiger li technet community support Windows Server  >  ...

Active Directory server bluescreen

Image
hi, our active directory server restarted automatically towice in day  i checked event logs i got unexpected error found , system restarted time checked minidump files shows tcpip.sys , hal.dll files error below have enclosed blue screen snapshot pls me solve issue hello, you should consider asking in http://social.technet.microsoft.com/forums/en/winservergen/threads problem belong not directory services. 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

Search index limits in Windows Server 2012?

in windows server 2008 recommended not index more 1 million files.  we found reliable recommendation because had stability problems when tried more.  has limit increased in windows server 2012?   hi, currently did not find information size limitation of windows search index windows server 2012. technet subscriber support in forum |if have feedback on our support, please contact tnmff@microsoft.com. Windows Server  >  File Services and Storage

IEAK10 not a valid replacement for "Internet Explorer Maintenance" GP settings

i've been reading several postings here users trying find internet explorer maintenance section in gp , being told ms moderators use ieak10 instead. however, if read fine print licensing guidelines ieak10, see "is testing purposes only". ieak 10 licensing guidelines in addition software license terms internet explorer administration kit 10 (ieak 10) (ieak 10, "software"), these guidelines further define how may , may not use software create versions of internet explorer 10 optional customizations (the "customized browser") internal use , distribution in accordance ieak 10 software license terms. ieak 10 testing purposes , not intended used in production environment. http://technet.microsoft.com/en-us/ie/jj643299 so real question ms team wrong? ones responsible licensing page? or ones telling use product not intended production environments? hi, according to below microsoft article, there known issues ieak 10, reason of statem...

RODC looses link to main domain

i got strange situation. there technical info below, if needed. in order avoid myself making boring introduce problem before (in couple of words). thus, after every reboot or shutdown of rodc system, rodc cannot authenticate user. reported "there no servers can perform authentication request available" or that. users "allowed rodc password replication group" cannot access system. local users or groups absent (rodc). how fix? switch patch-cord 1 network adapter another, wait couple of seconds, , switch cord first adapter. voila! how work? happens when adapters changed? now, configuration parameters. have win2008 r2 domain in 1 subnet (two domain controllers). we have several identical win2008 r2 rodc in branch offices dns server , wsus replica server installed. same domain, other subnets (one subnet 1 branch), other sites (one site 1 branch). on every rodc have 2 network adapters, setted different subnets: 1 branch network (for work) -- adapter 1, 1 hq ne...

Resource Monitor- Disk

Image
i have combed internet looking answer this, have been unsuccessful far.   users complaining slow performance on server , network has checked out ok.  i'm looking @ disk perf , here image in resource monitor when complaints slowness worst.  note green , blue line.  what blue line in disk image tell me?  is there more activity array can handle?  any detail on image means helpful haven't found in depth explanation anywhere.  i've captured many disk counters in perfmon, below.  hi, monitor disk performance issue, can select following counters: server\bytes transmitted/sec server work queues\queue length physicaldisk\disk bytes/sec  physicaldisk\avg. disk queue length 1st counter tells server busy or not in sending data out. 2nd counter tell if system waiting send tasks disk. 3rd , 4th counters tell whether disk  busy cater requests. larger 4th counters is, busier means (more task...

Server 2012 can't install 14 updates... Since January!!!

i did fresh install of windows server 2012 on intel 64 bit computer... a real one, not virtual.   i've done reinstall formatted disk 3 times far.  in january posted message couldn't install 2 updates.  number has climbed 14!   takes on hour boot because each update tries install, fails, reverts files , next update starts , same thing.  cumulative security update internet explorer 10 windows server 2012 (kb2817183) security update microsoft .net framework 3.5 on windows 8 , windows server 2012 x64-based systems (kb2789650) security update microsoft .net framework 4.5 on windows 8 , windows server 2012 x64-based systems (kb2789649) security update windows server 2012 (kb2790655) security update windows server 2012 (kb2807986) security update windows server 2012 (kb2813170) update windows server 2012 (kb2756872) update windows server 2012 (kb2790907) update windows server 2012 (kb2795944) update windows server 2012 (kb2800033) ...

Word error message - temp environment variable

hello the error message is when try upload word document. instance, trying send cv employment agency. browse through folders on desktop, select cv, , that's when error occurs. when click 'ok', same box popping again. i have removed office 2007 in hope of removing problem when reinstalled it, error occurred again. what should do, please, word working again? thanks. steve my guess problem web site. try uploading file in different format, such pdf. stefan blom, microsoft word mvp Microsoft Office  >  Word IT Pro Discussions

Using GPMCs Scripts without GPMC console

Image
when install gpmc on windows server, folder in c:\program files\gpmc created contaning folder "scripts". folder contain scripts useful getreportsforallgpos.wsf or listallgpos.wsf use scripts without installing gpmc console. when copy scripts , run in cmd on windows server 2003 dc where gpmc not installed crash following message: c:\>cscript listallgpos.wsf microsoft (r) windows script host version 5.6 copyright (c) microsoft corporation 1996-2001. rights reserved. c:\listallgpos.wsf(19, 2) microsoft jscript runtime error: automati on server can't create object i think gpmc's install process set dll , registry key purpose run gpmc scripts without gpmc console.  manually set settings allow scripts run correctly. could me find wich settings have set manually running scripts. lot best regards hi, thanks posting. the group policy management console (gpmc) comprehensive administrative tool group policy management. to install gpmc w...

Upgrading Server 2003 to Server 2003 R2

possible, or need clean install????   yes, can upgrade window server 2003 windows server 2003 r2.   however, have make sure current windows server 2003 installed sp1.  additionally, should verify following before starting upgrade window server 2003 windows server 2003 r2:   • stock-keeping unit (standard, enterprise, or datacenter) • platform (x86 or x64) • language version • installed channel type • channel type product key   for more information upgrading window server 2003 windows server 2003 r2, please refer to: t how upgrade windows server 2003 service pack 1 windows server 2003 r2   http://support.microsoft.com/kb/912309/en-us   hope helps.     best wishes -------------- morgan che Windows Server  >  ...

which version of Microsoft Windows Server 2008 R2 – x86 – 64 – Service Pack 1 with Hotfix for Microsoft Windows (KB2577795) is compatible with IBM Collaborative Lifecycle management v3.0.1.1 and v4.0.3?

can please me find out version of microsoft windows server 2008 r2 – x86 – 64 – service pack 1 hotfix microsoft windows (kb2577795) compatible ibm collaborative lifecycle management v3.0.1.1 , v4.0.3? standard microsoft windows server 2008 r2? or should enterprise microsoft windows server 2008 r2. found information 4.0 , above not v3.0.1.1. website found information - http://publib.boulder.ibm.com/infocenter/prodguid/v1r0/clarity/softwarereqsforproduct.html , http://publib.boulder.ibm.com/infocenter/prodguid/v1r0/clarity/osforproduct.html hi, i think you should verify ibm, article might you: https://jazz.net/library/article/632   https://jazz.net/library/article/1109 don (please take moment "vote helpful" and/or "mark answer", applicable. helps community, keeps forums tidy, , recognises useful contributions. thanks!) Windows Server ...

Hyper-V and IPSec issues

we use ipsec firewall on our local systems lock down communications between each other , machines outside of our network.  that's not going change telling me use windows firewall not solution issue unfortunately. we're implementing our first win2008 r2 server hyper-v (we've used virtual server 2005 & win 2008 server hyper-v previously).  have hyper-v r2 , running , new virtual machine in running.  started adding our typical ipsec policies block , permit communications use on other vm servers , apply them loose connection vm i'm connected inside of host os manager. tired looking in windows firewall figure out needed , permitted couple of tcp ports (2179 example) ips nothing seems working. i enabled ipsec logging , tracked down ports , seems working now.  permited 2179, 3389, , 135 tcp & udp ips ips.  had go turn off ipv6 on of network adapters because trying communicate between devices on ipv6 ips though don't use them. ...

windows 7 TCP ack frequency.

Image
hi, i observed windows 7 tcp stack (in pc) sends tcp ack message server(sender) after receiving two segments(1460 byte x 2) though receiver window size 17520 byte. feel if can wait more segments to receive , send ack can improve data speed. can me understand how windows 7 tcp stack behaves. regards dt hi dt, thank post. as symptom on windows 7 computer, suggest post windows 7 forum explanation. http://social.technet.microsoft.com/forums/en/category/w7itpro thank understanding.   regards rick tan technet community support Windows Server  >  Platform Networking

What does the powershell property MaxConcurrentCommandsPerShell stand for?

i writing application spawn persistent remote runspace. then every request create object of system.management.automation.powershell class, associate runspace, add powershell script , invoke same. once script invoked, dispose system.management.automation.powershell class object. here, not dispose, runspace (powershell session). after running application time (>2-3 hours) powershell call fails exception says quota maximum concurrent commands per shell has exceeded. since, create new instance of system.management.automation.powershell class every request, wondering how/why same script fail after 2-3 hours mentioned exception. i wanted understand, if there something, need additionally dispose/cleanup? i see maxconcurrentcommandspershell set reasonably high value of 1024, wanted know how limit evaluated. executing script in shell and, not think script commands executed concurrently, rather sequential. can please if understanding incorrect somewhere? w...

Software Restrictions Policy - Win 10 - Disallowed wont let any apps run, at all.

hello, trying implement test policy right now. have done: created central store, applied win 10 1607 templates. working. created new ou, test user , pc in ou test, no other policies. using computer policy this, not user. set srp default policy disallowed, set allow local admins bypass. i have set example, following path rules unrestricted:    c:\program files (x86)\adobe\acrobat reader dc\reader\    c:\program files\lenovo\lenovo solution center\ nothing can run, shortcuts on desktop report software blocked. what missing here?  i ran rsop , policy coming , can make changes , see changes on each pass know policy flowing down ok, reason wont allow run no matter put in list! actually looks srp isn't supported pasty windows vista seeing perhaps thats why isn't working. Windows Server  >  ...

DNS console readonly permission for a security group

dns console readonly permission security group. any highly appreciated. aliahmurfy hello, already answered in: http://social.technet.microsoft.com/forums/pl-pl/winserverds/thread/c26f5354-9f17-4017-96b6-ecdf040b4b20 best regards meinolf weber disclaimer: posting provided "as is" no warranties or guarantees , , confers no rights. Windows Server  >  Directory Services

Administrator stuck in the system container

hi folks,   i've inherited 2003 domain administrator user stuck in system container in ad. when trying move administrator ou or builtin container error "the requested operation not allowed on object under system container". has struck before or have way around it?   kind regards, chris russell hi chris,   according description, understand can not move out administrator user account system container.   you can allow moving data into/from system modifying reg key under hklm\system\ccs\services\ntds\parameters: unlock system subtree --> 1 note: operation risky. after moving out administrator user account, please remove registry again leave default.   sincerely, wilson jia this posting provided "as is" no warranties, , confers no rights. please click "mark answer" when correct reply question. Windows Server ...

RDS Broker

hi i have a questions: with using dns round robin , broker. fault detection? everywhere best practices setting broker talks of using dns rr broker load balancing. so if have 4 records rdsfarm (10.0.0.1 / 10.0.0.2 / 10.0.0.3 / 10.0.0.4) if 10.0.0.1 down , client resolves 10.0.0.1, whether there 3 other clients , active broker........ how ha? or viable load balancing solution @ all? rgs hi, first need decide how balance initial connection rd connection broker servers.  can done using different methods hardware load balancer, dns rr, nlb, etc.  once client makes initial connection rdcb redirect user rd session host server have existing connection or rdsh least load.  if rdsh server goes down, rd connection broker (after short time) detect , not redirect users down server. if use dns rr balance initial connections need understand ramifications when rd connection broker server goes down.  normal behavior rd client try first ip address received...