Posts

Showing posts from May, 2014

IncrementalBuild=true rebuilds every project

hi, have .sln file 18 vc++ projects.  overnight, build solution via tfs, setting incrementalbuild=false in order clean , rebuild each solution.  in morning, add 3 lines of code 1 function within 1 project , check-in changes.  executes .proj file has incrementalbuild=true , yet, 18 projects rebuilt. can explain happening here?  thanks. i tried running build once incrementalbuild=false , after incrementalbuild=true no changes source code.  every project still gets rebuilt.  Archived Forums V  >  Team Foundation Server - Build and release management

Re-Merge a changeset

hi all,   we try implement branching stategy within tfs our codebased. know want achieve, , try work out how handle situations. basically, plan have main dev trunk, , release branch, change merged teh dev trunk, release branch, build , release process. 1 concern if got released early, needed rolled back, have determined can use power tool (tfpt rollback /changeset:<<>>) then, how re-merge change release branch. tfs knows when changeset has been merged branch, , there seems no way can mark changeset "no merged" can re-merged release branch when ready.   anyone have ideas on how achieve this? thanks in advance clint colefax another way use tf merge /force parameter. Archived Forums V  >  Team Foundation Server - Source and Version Control

SSIS import, flat file vs straight ODBC

Image
i running performance test data import into sql server 2005 database teradata source database. case1: data downloaded from teradata flat file using odbc driver , loaded sql database using bulk insert. case2: data downloaded from teradata using odbc driver sql database through data conversion. download times in case 2 on average twice of in case 1 after 10 runs. can me understand why case though case 1 has data hop in flat file? thanks, vikram to improve results, you're going have more drastic on database end.  you're not going ssis load faster bulk load without database-end tweaks.  read sqlcat site ideas on partitioning, indexes, etc...  you're going have identify bottleneck - memory, i/o, cpu, ... address it. SQL Server  >  SQL Server Integration Services

Create Silverlight project as a seperate component?

hi all, i have silverlight application displaying image xap output refering web application. want create sl project component, 1. possible create sl project seperate component? 2. if have created sl project component, incase others can use component without installing silverlight development software? 3. dont know how create sl as  sepearte component? experts please me. alright, can create xap file , others can use silverlight application, without having silverlight development software. distribute xap file , explain how can use it. website developers want use xap , don't have silverlight development software have make use of either silverlight.js or <object>-tag include silverlight application in site. Silverlight  >  Programming Silverlight with .NET – General

HELP! sp_send_dbmail error

i'm having trouble sending email through dbmail.  i'm logged in a sql login user named "serviceuser".  have added user msdb database , rolemember "databasemailuserrole"     use [msdb] go create user [serviceuser] for login [serviceuser] with default_schema = [guest] go use [msdb] go exec sp_addrolemember n 'databasemailuserrole' , n 'serviceuser' go   when try send email:   exec msdb . dbo . sp_send_dbmail @profile_name = @databasemailprofiletouse , @recipients = @emailaddress , @subject = @subject , @body = @messagebody , @mailitem_id = @mymailitem_id output   i following error:   msg 15404, level 16, state 10, procedure xp_logininfo, line 62 could not obtain information windows nt group/user 'serviceuser', error code 0xffff0002.   i executed following on msdb , didn't help:   exec sp_changedbowner 'sa'   xp_logininfo returns error:   exec xp_l

how to set overridden properties in customcontrol

hi, i got issues when change styles in customcontrol. im not able set overriden properties using styles if set property explicitly in c#  then works but if set property through styles means not working why???   hi samdmpr, what's doubletextbox ?  have replaced doubletextbox textbox, works.  therefore, you'd better check doubletextbox. best regards, jonathan   Silverlight  >  Programming Silverlight with .NET – General

How to make a loop for a media element?

i have media element whos xaml code is: < mediaelement height ="9" autoplay ="true" source ="kalimba.mp3" name ="mediaelement1" width ="20" volume ="0.9" /> how loop, play again , again ever?   thanks in advance,  an inexperienced silverlight c# coder don't know if there property there must event notify when media has completed playing. add handler event and play media again, in handler. edit: following meant- < mediaelement height ="9" autoplay ="true" source ="kalimba.mp3" name ="mediaelement1" width ="20" volume ="0.9" mediaended ="mediaendedhandler" /> here eventhandler.   void mediaendedhandler( object sender, routedeventargs args) { (sender as mediaelement).play(); // mediaelement1.play(); }  

SQL 2014 SSMS Problem login in

when installing sql 2014 instance, added domain admin group sql users sysadmin privileges.   user member of domain admin, able login remotely.  however, not localhost.   in both cases using windows authentication. what need login locally? thanks in advance   you may have right-click ssms , select "run administrator". SQL Server  >  SQL Server Database Engine

Migrate Web server from Win 2000 Server to Win 2008 R2 Standard

hi, i have planned migrate web server win 2000 server win 2008 r2 standard. any way ?? thanks hi, thanks posting. please refer ms article web server migration: http://technet.microsoft.com/en-us/library/bb727148.aspx regards. vivian wang Windows Server  >  Migration

Beta3 released?

is beta3 escrow build posted msdn today public or ctp release?   patrick rouse citrix technology professional microsoft mvp - terminal server provision networks vip president - session computing solutions, llc http://www.sessioncomputing.com it ctp Windows Server  >  Remote Desktop Services (Terminal Services)

Get HostName for Each RemoteAddress IP in New Member

have powershell script, has variablie 1.  $getcon  : tcp connection in powershell 2.  $hn  : expand remote-address in $getcon. 3.  $rrt  : number of results, it's connection ip's. 4.  $gnamess  : variable create new member name ( urls ) for  $getcon  wich get-nettcpconnection.  finally  i have new member, contain list of each connections host names each ip address in get-tcpconnection remoteaddress. but  we don't revive result of host's in result, in result i've 1 host each host's! please me method host's in result. wrong syntax: $getcon = get-nettcpconnection $hn = $getcon | select -expand remoteaddress $rrt = foreach ($ips in $hn) { [system.net.dns]::gethostaddresses($ips) | select-object ipaddresstostring -expandproperty ipaddresstostring } $gnamess = foreach ($ipst in $getcon) { $rrt = ([system.net.dns]::gethostbyaddress($ips) | select-object hostname -expandproperty hostname) $ipst | add-member -note

trying to install dot net 3.5 on 2 fully patched 2012 standard server

i have tried dism method alternate source wim , sxs folder ends error 0x800f081f source no good. tried offline installer fails while running dism command i need test out system center service manager went through same issues, finaly sorted out by removing kb2868626 , kb2966828 (server date including september 2014 patches)  then .net 3.5 install completed smoothly (using add feature wizard & specifying source path) dear ms, please fix your fixs ....  Windows Server  >  Windows Server 2012 General

Password Expired, But still able to login

hello all, we facing issue particularly remote users, on field , travelling outside office months. as per our password policy every users password expire in 90 days, these users though password expired, there lastlogon , lastloginstamp keeps on updating recent dates. these remote users use ciscoanyconnect vpn connections. investigating how users account still active while not having reset password long. below example of users lastlogin recent last logon           last logon timestamp           last password change 6/6/2016 5:37        6/6/2016 5:36                      3/2/2016 0:03 6/7/2016 4:38        6/7/2016 4:32                             2/29/2016 22:43 5/9/2016 2:09        4/27/2016 2:43                           1/18/2016 2:23 6/16/2016 23:42    6/16/2016 23:41                     12/23/2015 22:57 thanks ha hi, generally, windows cache account password on machine, if not actively connected domain, old password work. when connect domain, authentication

Question regarding the deployment of security updates for Microsoft Office

hi, need regarding distribution of security updates of microsoft office client pcs: i have set organisation's wsus server automatically approve security updates microsoft office 2003. the client pcs installed full package of microsoft office (word, excel, powerpoint , on) , have installed security updates office offered wsus. recently, organisation decided remove poweroint pcs did reinstallation of microsoft office on these machines.  the first problem these pcs still receiving security updates powerpoint wsus though powerpoint no longer around more. the second problem after performed clean installation of os on 1 client pc , no office installed, still receiving security updates office wsus! so have encountered same problem before or know how prevent wsus distributing "unwanted" office updates client pcs? your appreciated, thank you. i've seen happen when have compatibility packs/office readers installed?

Shutting down idle computers

the responsibility has been given me shut down computers have been turned , left on when idle. please can show me how create gpo complete this. shutdown computer when there little no cpu usage. please can show me screen shots or point me video? thanks this great tutorial alan burchill: http://www.grouppolicy.biz/2010/01/how-to-use-group-policy-preferences-to-manage-windows-power-plans/ the principle power plans, computer determine own "idle" condition and automatically activate suspend or whatever. windowsxp didn't power management @ all, it's better in modern os's. the hardware have (and capabilities of hardware) may play role in success of approach. don (please take moment "vote helpful" and/or "mark answer", applicable. helps community, keeps forums tidy, , recognises useful contributions. thanks!) Windows Server

Server 2012 R2 - Error Occurred During during Storage Enumeration

Image
so found below error messages, found trying create new share , not let me proceed  i have no clue start found forums using powershell command in admin  update-storageprovidercache –discoverylevel full failed run also  sorry new server stuff great further errors found  exception: caught exception microsoft.management.infrastructure.cimexception: specified class not exist in given namespace.     at microsoft.management.infrastructure.internal.operations.cimsyncenumeratorbase`1.movenext()    at microsoft.fileserver.management.plugin.services.fscimsession.performquery(string cimnamespace, string querystring)    at microsoft.fileserver.management.plugin.providers.wmienumerationtaskbase.queryobjects(icimsession session, string querystring)    at microsoft.fileserver.management.plugin.providers.wmistorageenumeratetask.queryobjects(icimsession session, string querystring, string category, exception& errorcontext) also warning found not sure if related warning:

folders redirection storage hard disk crashed

hi, i discovered system housing redirected folder not booting, hard disk crashed. relieve know users can still work offline cached copy of files. i installed hardisk reinstalled os. delete old computer account on dc, and joined new system domain using old computer name i created folder (to store redirected folders) with same name , permission 1 on crashed hard disk. hoping copies of files on users system copied folder. when invoked synchronisation on 1 of the workstations, received the message copy of files on server missing or deleted, question asked if want copy files on workstation server, gladly picked option copy files on workstation server. instead of files being copied hard disk, files on worstation disappeared. 1 or 2 files copied server. thought files reppear (it happens atimes). did other workstations, and same thing happened.  now looking files. have gone inside csc folder, 1 or 2 files present each user. please how can locate these other files. best re

Automatically Updating Drivers without Group policy

hello, @ company work @ have started pushing video card driver updates out through wsus. while users have had no problems installing them have had trouble automating process. basically, have 7 computers continuously running tests cannot interrupted, except @ 430 in morning when reboot. have script reboot , trying make these computers install updates before reboot. i've tried wuinstall, remote reboot x, script: http://www.wsus.info...?showtopic=7298 , one: http://msdn.microsof...28vs.85%29.aspx work great installing windows updates not single 1 of them installs driver updates well! updates show high priority , other updates install no problem, every single script/program use trying automate updates says "no updates available" though windows update icon still there. have tried on both windows xp , windows 7 computers , have had same result, using wsus sp1 on server 2008. help/link program/script appreciated. thanks hi blake, try wuinstall /install /i

Mandatory profiles - what needs to be in unattend.xml

i trying create default user profile in windows 7 copy across mandatory profile on network, , followed below article: how customize default user profiles in windows 7 , in windows server 2008 r2 http://support.microsoft.com/kb/973289 i'm familiar using unattend.xml unattended installs, not this. nonetheless, created xml file following parameters on fresh windows install (just see if work): <unattend> <copyprofile>true</copyprofile> </unattend>   the end result system kept going configuring windows screen , had failed , needed reboot. safe mode, last known good, etc. wouldn't load. reinstalled system , set user necessary work after 3 day weekend, needs in xml file? hi,   i suggest discussing issue in our windows 7 installation, setup, , deployment forum. best resource troubleshoot issue.   http://social.technet.microsoft.com/forums/en/w7itproinstall/threads   tim quan - msft  

Exemption Policy in .1x Enforcement

hi all, i need creat 1 exemption policy based on below criteria - 1.clients non-nap capable 2.must have .1x enabled 3.only windows os 4.no user credential required authentication all above criteria must checked. in our environment have enabled .1x check on switch itself. if pc not have .1x enabled moved restricted vlan. your kind highly appreciated. rakesh kumar are looking exempt clients meet these 4 criteria single nps policy? i'm not sure possible or if best approach here's information may you. to handle no. 1 case, can create nps policies utilize the "nap-capable computers" condition. for no. 2, looks have covered switch configuration. nps isn't aware of whether or not client authenticating using 802.1x. aware of authentication method being used (typically p/eap in 802.1x case). authenticator (your 1x switch) acting intermediary between client , radius server. no. 3 doesn't have solution. there isn't way determine client os radius attribute i

Sysprep Windows 2008r2sp1 Session Host role

all, i have built windows 2008r2sp1 standard server , installed remote desktop session host role. have installed many applications , works designed. have used sysprep , wds create clone , gone on deploy clone further 2 times. although there nothing wrong can ping , connect shares etc i'm unable rdp them. error i'm seeing claims session host server not 1 expected , dns cache maybe stale. suspect sysprep hasn't quite got process correct session host role. has else seen , if how did solve issue. or suggestions gratefully received as i'm against tight deadline. regards pete .... hi alan, many response. i managed bottom of issue. clients 10zig devices not joined domain. upon investigation found these devices set timezone of manufacture (+8 hours). because i'm using client side authentication (nla) had effect described earlier , produced following message dialog.   the connection cannot completed because remote computer reached not 1 specified. cau

Question in regards to IAS, How do I assign a DHCP address range to a Remote Access policy (dynamic VLAN with DHCP address assignment)

hi all, i working on test lab right main objective assign dynamic port based vlaning via 802.1x. i using 1. linksys wrvs4400n primary router , switch 2. microsoft server 2003 active directory , ias , dhcp my topology looks internet --> linksys wrvs4400n port 1 --> assigned microsoft server, server vlan (vlan id 1) port 2 --> vlan (vlan id 2) port 3 --> marketing vlan (vlan id 3) port 4 --> design vlan (vlan id 4) i going using 172.16.0.x /24 network for test lab. each vlan assigned 64 ip addresses. current vlan scheme using. vlan 1 -> ip range 172.16.0.1 0.61 -> gateway 172.16.0.62 (servers) vlan 2 -> ip range 172.16.0.65 0.125 -> gateway 172.16.0.126 (it) vlan 3 -> ip range 172.16.0.129 0.189 -> gateway 172.16.0.190 (marketing) vlan 4 -> ip range 172.16.0.193 0.253 -> gateway 172.16.0.254 (design) i set servers ip address 172.16.0.1 255.255.255.192 . created domain, enabled radius , set communicate linksys router (default lan ip 172.16.0.62 on

Query an attribute of an OU object that a mailbox user is located in.

greetings, i have created mailbox billing spreadsheet in form of csv pulls data multiple sources exchange 2007 enviornment (running on windows 2008). have in report need except 1 value (of course). missing value need populate billing code have stored in the "businesscategory" attribute of the ou user object in. i.e. track billing code of users today in ou belong (i know there other ways this, our method today). i can user's ldap dn get-mailbox in ldap query friendly form. ie: "cn=user\, joe (code),ou=ou3,ou=ou2,ou=ou1,dc=company,dc=com" i can ou in, it's in the "company.com/ou1/ou2/ou3" format isn't ldap query friendly. i figured out powershell commands required attribute off of ou format of: $ou = [adsi]"ldap://ou=ou3,ou=ou2,ou=ou1,dc=company,dc=com" $ou.get("businesscategory") i can't quite figure out how ou path of ad user object adsi query. i thought using , delimeter , splitting dn of user 2 [pie

dsquery exclude OU "DisabledUsers"

hello i use allot dsquery user -inactive 4 -limit 500 problem output gives me ou="disabledusers" need exclude it. is possible? thx loza there no way know of exclude dn in ldap query/filter.   there tool called adfind by mvp joe richards has -excldn switch.   if want can provide more information on that. thanks mike http://adisfun.blogspot.com follow @mekline Windows Server  >  Directory Services

MS12-024 breaks ICA, and fix is to install files from 2008?

reading article ms12-024 here http://support.microsoft.com/kb/2653956  it says known issue can break rdp , ica connections, , fix install the 958476 hotfix http://support.microsoft.com/kb/958476  whose files have timestamps of 2008 on them.  why fix problem install files 4 years old , assuming vulnerable security flaws, why they've been updated since subsequent post-2008 patches? something doesn't sound right me.  microsoft going fix broke in ms12-024 in future patch? if so, eta? hi, as kb 2653956 mentioned, the files apply specific product, milestone (spn), , service branch (ldr, gdr) can identified examining file version numbers shown in following table: version product milestone service branch 6.0.600 2 . 18 xxx windows vista sp2 , windows server 2008 sp2 sp2 gdr 6.0.600 2 . 22 xxx windows vista sp2 , windows server 2008 sp2 sp2 ldr

How to make non admin user to make local administrator in all member servers

hi, i have server 2008 dc! want non admin domain user added local administrator in member servers...any specific method achieve these? me in finding way!!   thanks alot try follow these articles for restricted groups http://www.windowsecurity.com/articles/using-restricted-groups.html for gpp http://www.windowsecurity.com/articles/securing-local-administrators-group-every-desktop.html you should able achieve following above articles regards, krzysztof ---- visit blog @ http://kpytko.wordpress.com Windows Server  >  Group Policy

Windows 2012 server Restarts automatically

hi all, i have installed windows server 2012 datacenter. in system configuration of 24gb ram , core i5 processor 2tb hdd. have enabled hyper-v on server , installed google chrome browser. when login physical machine works fine , automatically restarts after hour, machine works fine day<end of day, shutdown machine>.  when  login machine next day automatically restarts after hour.  i have uploaded file dmp file , screen shots in below location. please me solve problem. https://skydrive.live.com/redir?resid=99d83ac0e427365a!182&authkey=!abody8f90tv6gaw&ithint=file%2c.zip loganathan s you have not activated machine.  sounds running evaluation copy, , working designed.  evaluation needs reach out microsoft (via internet) activate.  once activates, run 180 days.  @ point, go running hour , shutting down again.  can re-arm (with access internet) evaluation copy 30 days using slmgr.vbs.  after 30 days, it's running hour before shutting down.  can re-arm eva

Moving a clustered VM to regular Hyper-V

we have 2008r2 server vm running in cluster. it's exchange 2010 server running simple vm. however, cluster storage performance poor (1gb iscsi), , want move vm stand alone hyper-v host. a manual move seemed work, , vm boots, , drives mount properly, can't virtual network adapter work. have tried removing , re-adding virtual network in host, , deleting , re-adding adapter in vm. no good. unknown device each time. tried reinstalling integration services. sees there forever trying update. i suspect cluster specific elements still in vm, , these causing issue. there way this? are goint mvoe vm new host?.then first can create test vm on new hyper-v , check network funcionality .once confirm network connectivity on new hyper-v server, can move exchange in new hyper-v host. darshana jayathilake Windows Server  > 

Timing out

i using remote desktop imac access cloud app. message program not responding , bounced out without proper logout. there remedy? hi, thanks post. firstly, please let know if remote home/work pc or remote desktop session host server. if remote session host server, may need contact system administrator check session idle/limit configurations. if home/work pc, please check if session time limits policies set. local group policy editor\computer configurations\administrative templates\windows components\remote desktop services\remote desktop session host\session time limits. best regards, alvin wang please remember mark replies answers if , unmark them if provide no help. if have feedback technet subscriber support, contact tnmff@microsoft.com . Windows Server  >  Remote Des

CI/CD with external Git Repositories

this newbie's question, apologize in advance if answer known experienced users.  if have external git repositories, github or bitbucket, extent can use vs online perform continuous integration/continuous delivery tasks me?  can run unit tests, acceptance tests, etc in vs online external git repository. it seems logically ci/cd best handled maintaining vs online git repository, there might historical reasons why repository elsewhere.  is scenario has been worked out? if so, there documentation focuses on scenario? hi william, i suggest refer article may provide information on continuous deployment using  github https://azure.microsoft.com/en-in/documentation/articles/web-sites-publish-source-control/ https://azure.microsoft.com/en-in/documentation/articles/cloud-services-continuous-delivery-use-vso/ also suggest refer post may provide insight on issue: https://social.msdn.microsoft.com/forums/vstudio/en-us/030a436e-9671-416f-9c98-e198ae58c415/question-about-githu

Cube Design

i have 2 fact tables - main , comments fact main data in following format videoid     score a           1 b            2   c             3  etc   fact_comments have videoid key fact_main , comments each video , score each comments ( fact_main had granularity of videos, video score  and fact_comments has granularity of comments comments score) fact_comments: videoid   commentid     score a               aaa                 2 a                bbb               3 a              ddd                 1 b vvv                4 etc.   now want cube in see together. bascilly want integrate fact_main , fact_comments . tried having cube 2 measure groups. didnt work. instance, when select video id, instead of getting corresponding commentid, got comment id's. please let me know how dimension usage between these 2 tables be.    alos have many otehr dimensions shared across these 2 fact tables, dim_user.  teh user id of dim_user mapped uploader of

Alias on SQL Express 2005

hi group i on wss course yesterday the instrutor told idea to create alias on sql 2005 express server comes with windows sharepoint service, disaster recovery reasons. so i´m testing in lab, cannot seems find the: connection leaf in sql server management studio express im running server 2008 standard edition (64) sharepoint services 3.0 sp 1 sql server management studio express greetings bjarne hansen (gold partner denmark) hello, i think aliases not managed ssms sql server configuration manager ( sql server 2008 ) http://msdn.microsoft.com/en-us/library/ms190445.aspx the link sql server 2005 : http://msdn.microsoft.com/en-us/library/ms190445(sql.90).aspx don't hesitate post again more or explanations have nice day please remember click 'mark answer' on post helped you. unmark if provides no help SQL Server  > 

Server printers stop printing & queue print files

Image
server 2012 r2 this happens frequently, have lexmark laser printers shared server. when works, printers print clients. happens is all shared printers on server stop sending print jobs printer , backup in queue , show " sent printer". restarted print spooler no avail. have them printed reboot server. should not way clear this. any ideas why printer objects stop working? john lenz hi, thanks posting in forum. regarding current issue, have tried empty windows\system32\spool\printers folder while stop , restart windows spooler service? if not, please try empty , see if help. in addition, please refer following article troubleshoot printing issue. troubleshooting windows server 2012 printing https://social.technet.microsoft.com/wiki/contents/articles/13308.troubleshooting-windows-server-2012-printing.aspx hope helps. best regards, andy qi technet subscriber support if technet subscription user , have feedback on our supp

Users added to Remote Desktop Users local group on Terminal Server get "No search results" when they use ADUC find option.

hi all, users added remote desktop users local group on terminal server "no search results" when use aduc snapin find option search user account. can manually navigate user accounts ou structure using aduc. we tried giving list contents rights in ad users member of ts rdp group. aduc find functionality still isn't working. the aduc snapin find function works users members of administrators local group on ts box. ts box operating system : win2k12r2 any thoughts? regards, cool1 well, there messup of gpo's being inherited on ts computer accounts in ad. corrected unwanted gpo inheritance , worked. Windows Server  >  Directory Services

Printer mapping problems and errors

greetings all! i have problem client uses windows server 2008 se (winth newest updates) ts role. client computers running windows xp sp3 (with terminal server client 6 + sp1). in our application have .net technology modules  and vb6 technology modules. when user starts application pushed throu remote desktop packet he/she choose module. when user work .net component of program , want see his/her printers in application, see local printers. when users want see thair printers in vp6 component see printers (including printers other users). see same printer couple of times "pr02 (in session2), (in session3)... problem in fact have more 100 users. :( if choose printer other session (witch thay can't see cose of field lenght) message "9: subscript out of range". the problem our print controll in application pools printers cashed on ts. in gp i setted easy print, blocked it, defined map default printer nothing helped.... did anyone solve  problem one. please help!!! hi -

This computer (Server) has not reported status in "x" number of days

running windows 2008.  wsus states computer has not reported status in 97 days.   these computers servers - exchange, sql, , domain wsus installed on.   noticed ip address changed our end private network 192.xxx.xxx.xxx making backups quicker - have 2 nic cards installed 1 192.xxx.xxx.xxx addresses , 1 10.xxx.xxx.xxx network.   way fix problem?  should delete them , let wsus find them again?  also, wsus did not find windows 2003 storage server - way of making find or adding server manually? thanks   properly configure/apply policy. lawrence garvin, m.s., mcitp:ea, mcdba principal/cto, onsite technology solutions, houston, texas microsoft mvp - software distribution (2005-2009) Windows Server  >  WSUS

Web Enrollment Error - An unexpected error has occurred

i installed ca web enrollment service on separate server of certification authority, think kerberos delegation configured because can request , receive certificates using setup account (enterprise admins, domain admins) without issues. when use other user account access ca web enrollment site test download crls..i got error... an unexpected error has occurred: certification authority service has not been started. thanks help.!! regards, rené, rene anton any chance ca on domain controller? https://support.microsoft.com/en-us/kb/903220 mark b. cooper, president , founder of pki solutions inc., former microsoft senior engineer , subject matter expert microsoft active directory certificate services (adcs). known “the pki guy” @ microsoft 10 years. connect mark @ http://www.pkisolutions.com Windows Server  > 

Windows 2003 Exchange Cluster - Evicted node

hi all, working on problem i've not seen before, has else? basically, have 8 node exchange cluster. os 2003 sp2 exchange running @ sp2 well. 6 active , 2 passive. following ram issue on node on weekend, part of recovery steps decided evict node - why? not sure. anyway, once ram replaced, node added cluster. however, today, (first working day) whole cluster failed, newly added node, kicking other cluser nodes out. thoughts are:- exchange needs reinstalling per http://technet.microsoft.com/en-us/library/aa998691(exchg.65).aspx right approach? has else come across before? thanks. chalkie chalkie hi all, found on jim mcbee's website:- valuable lesson? when exchange clustered node evicted cluster , re-joined cluster, make absolutely sure re-install exchange 2003, , put on service packs , hotfixes. link = http://mostlyexchange.blogspot.com/2005/08/exchange-clustering-lesson-learned.html chalkie

More details about message with code 31 (DNS update failed) in DHCP log file.

hello, is there way in windows server 2008 r2 identify update has failed in dns when code 31 encountered. it "a" record or "ptr" record of dns ? thanks in advance. regards, andrejs hi andrejs, when code 31 logged, "a" record or "ptr" record or both of them. this log tells wrong dns registration. find out detailed error information, please check event log of dns server. best regards. steven lee please remember mark replies answers if , unmark them if provide no help. if have feedback technet support, contact tnmff@microsoft.com. Windows Server  >  Network Infrastructure Servers

ADFS2.0 Step-by-Step setup lab environment

i setting adfs2.0 lab ms tech net site using "how setup adfs2.0 lab enviornment". in step #5 in installing sql 2008sp1 , running "hol_doctors_db.sql" says can find script clicking on file-open-selecting file script saved. problem can not find script. using sql2008r2. stuck , use assistance. thank you hi, did download support files? did download prerequisite software step 2? sql script (hol_doctors_db.sql) included support files. go through this: http://technet.microsoft.com/en-us/library/adfs2-how-to-setup-lab-environment-for-federated-collaboration-02(ws.10).aspx download here: http://connect.microsoft.com/site642/downloads/downloaddetails.aspx?downloadid=25391 best regards, abhijit waikar. mcsa 2003|mcsa:messaging| mcts|mcitp:server administrator|microsoft community contributor | my blog disclaimer: posting provided "as is" no warranties or guarantees , , confers no rights.

Ldap Query VAMT

hi guys i trying ldap query use vamt 2.0 select computers in specific ou, example: mydomainname/mycountryname/computers, write: ldap://mydomaincontroller.com/ou=mycountry/ou=computers,dc=mydomaincontroller,dc=.com??sub?(&(objectclass=computer)(operatingsystem=windows 7 enterprise)), shows  "an operation error ocurred" wanto search windows 7 enterprise computers, can please give me guidance. thank much! it should in format: ldap://dc1.domain.com/ou=subou,ou=parentou,dc=domain,dc=com??sub?(&(objectclass=computer)(operatingsystem="windows 7 enterprise")) enfo zipper christoffer andersson – principal advisor http://blogs.chrisse.se - directory services blog Windows Server  >  Directory Services

Direct Access SChannel error

hi all,         windows server 2012, direct access installed. when windows 8 client attempts connect, da logs on client show pass each of addresses in dte list, fail entry in probe list. after bunch of pulling hair out why - had on server , noticed following 2 events occur whenever test da client tries connect: an tls 1.0 connection request received remote client application, none of cipher suites supported client application supported server. ssl connection request has failed. and a fatal alert generated , sent remote endpoint. may result in termination of connection. tls protocol defined fatal error code 40. windows schannel error state 1205. there seems technet forum post on - no resolution... 1 suggestion there policy set enable fips - not case on server. have suggestion on how troubleshoot further ? i guess using computer certificates client authentication? getting tls error on server or client? output getting following commands on client when trying connect:

WSUS Question!!!

hello all, i need quick , advice current situation , trying do. currently using wsus on 2003 sp2 server want move wsus new 2008 r2 server. best install wsus on new server , point gpo new server or there better way of doing this?   thanks , support.       yes, setup new server , point gpo when it's configured.  additional step ease transition copy on file system , metadata.  following link has easy step step guide. http://social.technet.microsoft.com/wiki/contents/articles/508.how-to-move-wsus-from-one-server-to-another.aspx Windows Server  >  WSUS

Server Essentials + Exchange 2013 - ARR Reverse Proxy setup kills Anywhere Access to Essentials Box

so setting client's hyper-v host server 2012 essentials guest , exchange 2013 guest (on windows server 2012 standard) , have working pretty - needed publish exchange iis stuff public ip that's forwarded essentials box. followed instructions on technet "integrate on-premises exchange server windows server 2012 essentials" install arr , did proxy exchange iis stuff outside world - problem is, essentials anywhere access broken - bare hostname shows iis generic page, , /remote shows 404. i'm sure dig documentation on arr , set rules make work - before has out there done this? can provide instructions? you must choose different fqdn on-premises server running exchange server fqdn using server running windows server 2012 essentials. example, can choose use remote.contoso.com fqdn computers use access server running windows server 2012 essentials internet. can use mail.contoso.com fqdn used route email on-premises server running exchange server. you not

Windows Server in bad shape - what are my options?

hi guys, i'm running windows small business server 2008 premium. deals anti virus, ad, backups, dns, dchp , hosts public docs. have windows server 2008 system running our lob software (sql), print server. to cut long story short, hasn't been maintained last 6 months. accept , criticism this. wsus broken - clients aren't getting updates. backups won't complete (windows server backup). tried manual system-state backup few months ago , seemed work, i'm not sure work now, need test this. i've searched various ms forums , attempted sort these problems out quite time no avail. i've made mistake of not documenting various steps i've taken , think i've got bigger mess making further troubleshooting more difficult. the server around 4 years old , due upgrade / replaced. i'm having these problems, it's making idea of new system more appealing. my question: if bought new server (or reinstalled old one!), system-state backup of current

deploying uniquly IP'd 2008 Servers with WDS

i working customer wants deploy unique 2008 servers utilizing wds. we have deployed servers want able specify unique ip each server. has 1 done yet? missing? i did find imageunattend.xml settings required set ip on deployed server; problem imageunattend.xml specified on per image basis . . . not per client  . .  of servers end same ip. right exploring ideas focusing around replacing imageunattend.xml on destination disk prior installation . . . looking significant challenge. so if 1 has done , willing share; please here! hello,   do want deploy different client computers different unattended files? if so, can achieved following steps:   steps: ==========   1.        create prestaged account server want deploy to.   you can either using active directory users , computers mmc snap-in console, or using wdsutil command-line utility "wdsutil /add-device /device:<name> /id:<id>", id guid or mac address of computer want prestage.   for more deta