Posts

Showing posts from June, 2013

table structure

hi, in application using asp.net  table 4 columns id,desc,quantity,price   with 5 rows . id         descdription   quantity               price txtbx1     txtbxdesc1       txtbxquant1     txtbxprice1 txtbx2    txtbxdesc2       txtbxquant 2    txtbxprice2 txtbx3    txtbxdesc3       txtbxquant3     txtbxprice3 txtbx4   txtbxdesc4     txtbxquant4    txtbxprice4 txtbx5     txtbxdesc5     txtbxquant5    txtbxprice5                                                  total     txttotal rtnow  create  database table   create table [dbo].[project_itemtest]( [id] [int] identity(1,1) not null, [pid] [int] not null, [item] [varchar](150) null, [description] [varchar](max) null, [quantity] [varchar](max) null, [price] [varchar](50) null, [item1] [varchar](50) null, [desc1] [varchar](max) null, [quantity1] [varchar](max) null, [price1] [varchar](50) null, [item2] [varchar](150) null, [desc2] [varchar](max) null, [quantity2] [varchar](max) null, [pric

ADO's .Parameters.Refresh isn't in ADO.NET

i'm using ado.net in visual basic 2008 express (.net framework 3.5 sp1). i'm old (yeah, happens best of us) vb/vba programmer used ado 2.x. here's i'm used doing: dim cmd new adodb.command set cmd.activeconnection = connect.getconnection cmd.commandtype = adcmdstoredproc cmd.commandtext = "usp_mystoredprocedure" cmd.parameters.refresh cmd.parameters("@parameter1") = foo cmd.parameters("@parameter2") = bar it looks there no longer refresh method of parameters collection under .net 3.5 sp1's system.data.sqlclient.sqlcommand object: dim con new system.data.sqlclient.sqlconnection dim cmd new system.data.sqlclient.sqlcommand dim reader system.data.sqlclient.sqldatareader dim csbuilder new syste.data.sqlclient.sqlconnectionstringbuilder csbuilder.datasource = "myserver" csbuilder.integratedsecurity = true csbuilder.initialcatalog = "mydatabase" con.connectionstring = csbuilder.connectionstring con.open() cmd.commandtype =

Getting Error : while Converting double datatype

Image
[company 10 [33072]] error: there error output column "inv_carry_cost" (181548) on output "ole db source output" (33082). column status returned was: "deferred accessor validation failed.".  [company 10 [33072]] error: ssis error code dts_e_inducedtransformfailureonerror.  the "output column "inv_carry_cost" (181548)" failed because error code 0xc0209071 occurred, , error row disposition on "output column "inv_carry_cost" (181548)" specifies failure on error. error occurred on specified object of specified component.  there may error messages posted before more information failure.  there [in log or output window] must error indicating @ line error occurred. typically, due un-parsable value in column value. so fix in adding check on validity. best done in script transformation using http://goo.gl/poi8do if not please let know how reproduce error. arthur my blog

Need for Multi-Threaded Visual Basic.NET to SQL Server Data Access Example Code

of visual basic.net data access books have purchased , internet site example code have reviewed, none have had examples of multi-threaded vb.net code doing data access. i trying avoid non-responsiveness in vb app while a simple data retrieval sql server 2005 in progress. if knows of book titles or web sites have example code (good or not) of multi-threaded vb.net applications doing data access against microsoft sql server (7, 2000, or 2005) or against microsoft access(tm), appreciated if provide book title or url point me in right direction. the more examples better. thanks in advance. i've never seen database programming books that cover specific topic.  may want start looking .net books cover multi-threaded programming in .net.   past experience, remember it bit tricky.     SQL Server  > 

Unable to connect to Team Foundation Server

i trying migrage vss on tfs 2010.  run vssconverter migrate migration_settings.xml.  following error: tf31002:  unable connect team foundation server: http://server_name:8080/ is there workaround this?  following migration walkthrough instructions.  can tfs server if http://server_name:8080/tfs . any ideas?     hi, you may need include collection attribute on teamfoundationserver element: <teamfoundationserver name="myserver" port="8080" protocol="http" collection="tfs/defaultcollection" ></teamfoundationserver> check link: http://blogs.msdn.com/mitrik/archive/2009/10/29/using-vss-converter-in-tfs-2010-beta-2.aspx Archived Forums V  >  Team Foundation Server - General

Decimals truncation.

hi, i'm trying aritmethic numbers in sql server. application needs result must same 1 got in oracle because migrating databases. need solution problem. example: operation: (0.5/14.0) oracle result: 0,0357142857142857142857142857142857142857 sql server result: 0.035714   operation in sql server: select round ( convert ( decimal (38,12),1234567890 * (1.0 - 0.5/14.0)),0) result: 1190476532.000000   operation in oracle: select round (1234567890 * (1.0 - 0.5/14.0),0) from dual result: 1190476180   i make sum of 50 millions of rows, result not same.   i need here. thank much.     select ( cast (0.5 as float )/14.0) SQL Server  >  SQL Server Migration

Using SL application from Windows Mobile

simple sl application shows stock status , prices.  some of users have qtek 9100  devices running windows mobile internet explorer installed. how allow them use silverlight 2 application ? should stop using silverlight , re-write application using html , javascript or there possibility allow sl application usage windows mobile ? andrus. hi! here information using silverlight on windows mobile platform . Silverlight  >  Programming Silverlight with .NET – General

How to import an Excel Sheet/File into SQL Server 2005 (to different tables in sql)

how import excel sheet/file sql server 2005 using ssis, dts or other tool while have different column names in excel sheet. these different column names suppose uploaded matching columns in different tables in sql database. how achieve this?   i have tried dts takes 1 table @ time? appreciate suggestion. thank you hi if using dts import can select 1 table only. best method build ssis package can use multiple import method. you can use bcp utility also. another 1 method openrowset insert yourtable select * openrowset('microsoft.jet.oledb.4.0',     'excel 8.0;database=d:\test.xls;hdr=yes',     'select * [sheetname$]') ramesh s www.sequalserver.com SQL Server  >  SQL Server Tools

Visual web developer with sql server 2008

i need configuring visual web developer 2008 sql sever 2008, far know thought should installed together, how check if there, can connect database file, need know can create new database , how add tables , procedures it 10x in advance hi, visual web developer 2008 ships sql server 2008 express edition, need download sql server 2008 mangement studio express is a integrated environment integrated environment accessing, configuring, managing, administering, , developing components of sql server. download microsoft download center here: http://www.microsoft.com/downloads/details.aspx?familyid=08e52ac2-1d62-45f6-9a4a-4b76a8564a2b&displaylang=en chunsong feng microsoft online community support please remember mark replies answers if , unmark them if provide no help. welcome all-in-one code framework! if have feedback, please tell us. SQL Server  &g

Unable to install Management point on SCCM 2007 R3 secondary server

hello i trying install mp on secondary server primary. experiencing strange problem. when create mp primary, wizard shows completed nothing happens on secondary. no event generated, no mp.msi or mpsetup.log or mpcontrol.log file created. neither app pools gets creates in iis. have installed sccm successfully. nothing happening after that. in event saw 1035 event don't think raise issue. have both win 2k3 servers. i performing reinstallation on server. have followed instruction before install server. reason behind installation sms_ccm folder creates under c:\windows\syswow64 folder instead of default location g:\ drive sccm installed... can me.... mandar murudkar might ask them on here. http://social.technet.microsoft.com/forums/systemcenter/en-us/home?forum=configmgrsetup&filter=alltypes&sort=lastpostdesc       regards, dave patrick .... microsoft certified professional microsoft mvp [windows] disclaimer: posting provided "as is" no

Dis-Integrate SCCM and WSUS

hi all, we approaching client, proposed them our solution. they have instance of sccm 2012 running on network, , integrate wsus together.  our solution manage patching , updates, , prefer not touch current sccm @ all. is there way dis-integrate sccm 2012 - wsus installation, , install standalone wsus v3 on network? (although, have purchased configmgr, and, proposing ignore investment? interesting.....) a significant number of configuration manager environments not have integrated patch management using wsus, rather patch management standalone wsus, , use configmgr osd, asset management, , (sometimes) software metering. notable points of comparison between standalone wsus , configmgr sup: superseded updates not automatically declined (although cm2012 provide limited enhancements functionality). target groups , approvals less complex methodology collections , deployment rules. more flexibility in client configuration in standlone wsus using gpo (different ous can

No resolve for "There has been a network or file permission error. The network connection may be lost."

i have user in remote office having "there has been network or file permission error. network connection may lost."  microsoft article  http://support.microsoft.com/kb/291156  details of symptoms occurring, however, not give suitable workaround.  we not wish save local drive or have user copy , forth between local drive , network drive.  the issue occurs on 2 different network shares, both located on same server.  i've tried accessing both unc path , mapped drive , both have issue.  the issue sporadic - file save, not.  i've checked security permissions , okay.  when user remotes our terminal server, no error ever given, no matter how many times change document , save.  the file server microsoft failover cluster running server 2008 between 2 servers.  the user running windows 7 , using office 2010 pro.  no 1 else @ remote office (or in general) has yet report issue. any suggestions? hi willjasen,   thanks posting here   so user connect

File Permissions Driving me Batty!

can this? we share out d:\users.  has access folder. under there, have administration more limited permissions.  under have jsmith, , originally, had access under that.  caused backups fail.  have gone in , changed permissions not inherit, when @ directories, see admin has rights folders, none of docs under them.... for instance: d:\users\administration\jsmith     (access, jsmith , admin, full) d:\users\administration\jsmith\personal    (access, jsmith , admin, full) d:\users\administration\jsmith\personal\doc1.docx   (access, jsmith) any files under of folders have him permissions.  if go top level jsmith directory, , choose special permissions, , assign jsmith , admin full access , click "replace child object permissions....", files under directories remain accessible jsmith. what doing wrong? hi dave, please try explicitly assign permissions admin on file below see happens: d:\users\administration\jsmith\personal\doc1.docx  best regards, amy p

Ask your advice on naming space.

hi all, today, had big discussion ad design team: propose our internal domain name should xy.net , our company's external domain name xy.com. wonder why use xy.net internal domain name , should use xy.local our internal domain name seperate internal , external domain though xy.net not registered. can me out this? i know ms suggests subdomain of external domain internal domain.  due longer dns space, how many people use naming convention? three methods domain naming: 1) same dns name internally , externally 2) different dns namespaces internal , external 3) sub-domain of external name  which 1 prefer? thank you. best practices dictate best option #2 list.  however, 1 decide has take account business drivers.  personally, attempt use option #1, because user's perspective, transparent.  however, management perspective, require additional configuration , maintaining. take @ summary put regarding option #1. active directory domain name considera

Hyper-V Hosting

we looking @ offering our software asp solution one of our clients. not have large enough user-base require multiple web servers have availability requirements mean need duplicate tiers. to cost meet requirement planning on hosting on virtualised platform can provide 2 web servers, 2 applications servers, 2 database servers mirroring , 1 database mirror witness server. we can provide of less $1500 month using gogrid. however have been exclusively microsoft-only shop, , have (positive , good) internal experiance on running hyper-v since first beta. of vps hosting providers (such gogrid, flexiscale) can find run on either vmware of xen. does know of companies offering virtual servers based on hyper-v? have found one, layertech. , prices not lower there phsical dedicated server offering. if use layertech might deploy set of physical servers. hope can help. if dont exist, i'm seeing real business opportunity someone! andrew check them out.  use them regual hyper v hosting.  not sure

On Create Event - move and rename File

thanks to kazun, have script below works.  the folder structure test incoming...then 2 subfolders - folder1 , folder2 when file created in folder1 need moved test incoming directoryname (folder1) appended beginning of existing file name. ex.  xxxx.tif created in folder1.  need moved test incoming name folder1xxxx.tif.  i can't seem work correctly.  can tell me how can know correct variable use create this?  here code without tests in it..     param ([string]$folder = 'c:\cpr7\faxes\test incoming', $icon = "c:\batch files\monitoring.ico", $destpath = 'c:\cpr7\faxes\test incoming\' ) [reflection.assembly]::loadwithpartialname("system.windows.forms") | out-null $form = new-object system.windows.forms.form $ni = new-object system.windows.forms.notifyicon $nimenu = new-object system.windows.forms.contextmenu $watcher = new-object system.io.filesystemwatcher $folder $ni.icon = new-object system.drawing.icon($icon) $ni.context

Invalid signature in ECC-signed x.509 certificate

i've installed x.509 self-signed certificate local machine trca store on windows 7 sp1 updates applied. in "certmgr" i've seen "this certificate has invalid digital signature". certificate signature algorithm "sha1ecdsa" wich must supported cng on nt 6.x. why i've got problem that? a confirmation, ms os supports these elliptic curve algortithms: ecdh_p256, ecdh_p384, ecdh_p521, ecdsa_p256, ecdsa_p384, ecdsa_p521 regards diana 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  >  Security

Windows Server 2008 IIS V7 not displaying page

i have asp.net web site built in vs 2012 version 4.5 using vb. when run in debug mode works well, site renders , data displayed intended,  when publish web server (windows server 2008 iis v7 ), hangs blank page. i have set default document, , using .net framework v4.0 integrated network service connection pool. when published site, made sure connection okay , previewed deploy. checked files intact in iis manager. , have set applicationhost.config same way site works on same server. server , database running on different hosts, both sql server 2008. i don't know how go debugging seems configuration or setup problem , without rudimentary error message, i'm @ dead end. gratefully recieved.  just few notes on this, on server running website, can nslookup , the results come server name , ip expected hi, get started enabling iis logging on website , check eventlogs. browse website on local server (this, default, gives more error information). check basics: make su

ask your idea!

today, went 1 client site has 1.9 gb dit database files. (mixed windows 2003 & 2008 dcs) had on 3500 servers , 36 domain controllers; 32 sites. interestingly, configured 1 replication interval between 2 sites 72 hours. can figure out why want interval 72 hours? thank you. main reason reduce replication traffic between dcs/forests/sites, big environment (like above sounds), bandwidth can become prime concern. considering domain in essence site, 36 domain controllers in 32 sites must mean domains have single domain controller. bit worrying large environment above? Windows Server  >  Directory Services

Remote App - saving files locally are extremely slow

looking workarounds or if doing silly.  piloting few remote locations , using office 2007 on ts farm via remote apps.  apps launch fine , responsive.  however, when want them save file locally, appears saves using \\tsclient\c\documents\etc .  appears when save local file, being uploaded through ts server, down local computer large files on these locations limited bandwidth, taking long 10-15mb files save. what options? , expected behavior remote app?  thanks! hi withersd, sounds going expected behavior.  what happens, client in remote office opens remoteapp, , opens document (assume document sitting on local machine in remote office). file in memory on terminal server , stays there until doc saved/closed. when saved, saving redirected drive ( \\tsclient ...), via virtual channels. means, file going terminal server client on wan (it not goign temrinal server first when saving, because there).  if file large, gonna take while. now.  if remote offices connected main network (where term

Unknown error (0x80005000) When getting the memeber of local computer group

i have wcf service has function members of local pc groups. works fine couple of days, reason start getting above error message. recycle app pool , works ok again little bit. not sure have wrong. here code: public shared function getmembersoflocalgroup( byval computername as string , byval groupname as string ) as groupmemberslist dim returnvalue as new groupmemberslist 'set username , password const username as string = "domain\user" const password as string = "somepassword" if not ( string .isnullorempty(computername)) then if not ( string .isnullorempty(groupname)) then 'clear characters computername = computername.trim groupname = groupname.trim try 'connect local pc information provided using localcomputer as new directoryentry( "winnt://" & computername & ",computer" , username, password) using localcomputer

Error 0x00000242 when adding x86 printer to x64 Server 2008 Print Server

Image
we attempting replace several printers on our network , i'm working on updating drivers.  x64 driver updates server going fine.  however, when attempt add x86 print drivers 32-bit client, experiencing problems.  here details of process server - windows server 2008 x86 sp2 printers (though believe unrelated), switching older laserjet 4100 printers kyocera fs-1370dn printers. client - have tried using vm using windows vista sp2 32-bit, vm using windows 7 sp1 32-bit, , local network client natively running windows 7 (no sp) 32-bit. i create console , add print management snap-in connecting print server.  navigate installed printer, , "properties" on printer.  when asks if wish install driver, click "no" can browse later.  go sharing tab, , click "additional drivers...".  click x86 check-box, , click ok, @ point browse appropriate folder our drivers.  drivers begin install, finish, , after finishes, receive following: "unable install k

Windows Server 2008 R2 Restore back to 2008

i attempted upgrade windows server 2008 windows server 2008 r2, failed , received bsod.  did 3 backups on 2008 before upgrading 2008 r2.  need know how rollback , restore 2008 r2 2008 backups performed.  possible?  tried restore 2008 r2 dvd on network backup 2008, failed.  gave error message should reboot, because there pending process.  not let me go further.  did bcdedit, stated nothing found.  suggestions on how can fix this? to restore 2008 backup, boot 2008 media (not 2008 r2) http://technet.microsoft.com/en-us/library/cc755163.aspx       regards, dave patrick .... microsoft certified professional microsoft mvp [windows] disclaimer: posting provided "as is" no warranties or guarantees , , confers no rights. Windows Server  >  Windows Server General Forum

hyper-v ip address

i bought dedicated server , block of ip address. i have 3 public ip.  trying assign 1 host machine , 1 guest vm. the host ip is: 69.63.40.x and 2 free ip: 69.63.44.x 69.63.44.x it seems other 2 free ip on different network.  how go assign ip guest machines? hi,   are using hyper-v @ moment? if so, can create external virtual network bind 1 physical network adapter, connect 2 guest vms external virtual network, assign ip address them manually. way assign ip address guest vm same on physical computer.   for more information hyper-v networking, can refer to:   understanding networking hyper-v http://blogs.msdn.com/virtual_pc_guy/archive/2008/01/08/understanding-networking-with-hyper-v.aspx   how basic networking work in hyper-v? http://blogs.technet.com/jhoward/archive/2008/06/16/how-does-basic-networking-work-in-hyper-v.aspx   configuring virtual networks http://technet.microsoft.com/en-us/library/cc816585.aspx   hyper-v: uses different typ

certreq for another AD User

hi, i need able to request certificate user certificate template i've created ad user. for testing purpose i'm logged domain administrator , if i'm trying execute following powershell script it's not working.  if remove requestername parameter "ok" except certificate has been issued logged user administrator. thanks helping here's error : certificate not issued (denied) error verifying request signature or signing certificat e  none of signers of cryptographic message or certificate trust list truste d. 0x8009202b (-2146885589)  here's script : [string] $templatename = "certtemplate" [string] $caname = "myrootca" [string] $certpath = "c:\test" [string] $username = "test7" write-host write-host "generating request file" remove-item $certpath\usercert.inf -erroraction silentlycontinue remove-item $certpath\usercert.req -erroraction silentlycontinue add-content $certpa

print spooler failed to reopen an existing printer connection

i see on terminal servers.   not sure causing it, or s-1-5-18 is.  people still seem able print. thanks help. log name:      system source:        microsoft-windows-spoolerwin32spl date:          6/01/2012 5:35:10 am event id:      4 task category: none level:         warning keywords:      classic user:          n/a computer:      server.domain.com description: print spooler failed reopen existing printer connection because not read configuration information registry key s-1-5-18\printers\connections. print spooler not open registry key. can occur if registry key corrupt or missing, or if registry became unavailable. hello joe,  i recommend read similar kind of thread: http://social.technet.microsoft.com/forums/en-us/itprovistaprinting/thread/43c6c1ba-3476-489d-b92e-411830122c1f regards, ravikumar p Windows Server  > 

Deploying SSIS Package

hi, i have deployed package. have configuration file package. during deployment, have added config file using add file option. how give values before executing setup file. thanks, poorni. poorni, see here learn how add configurations package:  http://msdn.microsoft.com/en-us/library/ms140213.aspx . to deploy @ create deployment utility:  http://msdn.microsoft.com/en-us/library/ms137952.aspx , , deploy:  http://msdn.microsoft.com/en-us/library/ms141693.aspx . after you've deployment packages , configurations can edit xml configuration file text editor (e.g. notepad or similar). hth, patrik this posting provided "as is" no warranties, , confers no rights. SQL Server  >  SQL Server Integration Services

Customizing the MS Clustering algorithm

hi, is there way can change parameters of microsoft clustering algorithm through business intelligence development studio. gui based way this? need change maximum_input_attributes parameter since takes 255 thanks alot darrshan yes, open mining models window, select model,  in properties window find "algorithmparameters" property. select property , click "..." button. dialog can see , change properties algorithm. tatyana yakushev [predixionsoftware.com] SQL Server  >  Data Mining

named set questions

  as understand it, named set is not processed until needed. once these processed cached use other client requests? if there aggregations set in cube trigger the named sets processed right away cube? i assume if named set big there loss in performance, there way hold down size of named set? here examples of named sets i've created using calculated members. perhaps there better way of doing this? *************** calculated members*************************** create member currentcube .[measures].[hp plus addl billing] as aggregate ([prep control hdr].[bill formats].&[19],[measures].[billed sales amount]), format_string = "currency" , visible = 1; 2nd calculated member create member currentcube .[measures].[prep billing] as aggregate ( except ([prep control hdr].[bill formats].[bill formats] ,{[prep control hdr].[bill formats].&[19],[prep control hdr].[bill formats].&[7]}),[measures].[billed sales amount]), format_string = &qu

TFS web access error object reference

Image
i have tfs 2010 works fine vs. recently, needed users access tfs web; when ever type http://myserver:8080/tfs/web , message box indicating "object reference not set instance of object" on web site can see vs layout tabs , menues, clicking on new work item --> bug example get error hresult e_fail has been returned call com component thanks hi eliassal,  thanks post. if not install tfs 2010 sp1 tfs 2010, suggest upgrade tfs tfs 2010 sp1, try again. please refer kim’s reply(the last reply) in similar post: http://social.msdn.microsoft.com/forums/da-dk/tfswebaccess/thread/c8979e14-5429-4e1d-81d6-bab2d1199d70 .    john qiao [msft] msdn community support | feedback us Archived Forums V  >  Team Foundation Server - Setup and Administration

SNMP installation issues

i have requirement win2008 rc1. used install snmp components win2k3 cd on win2003 server , configure through services. there no option install component cd. how install ? or installed default. have same on core , enterprise version?   after installation have following req: 1. go computer --> manage --> services & applications -->services 2. under find extended , standard sheets, choose standard 3. snmp services 4. double click on snmp services 5. choose agent tab --> edit contact field "localhost" , location field "localhost" 6. choose traps tab --> choose community name "public" , under trap destination --> add-->hostname-->"localhost" 7. choose security tab --> under tab --> accepted community names --> click on public --> choose --> community rights as    "read_write" , community name "public" 8. under same tab choose -->accept snmp packets these hosts --> , add "l

RDS License server

Image
hi, we going deploy rds in our environment. have 2 domain controller, 2 terminal servers , 40 thin client devices. have purchased 50 per device licenses. planning install license server role on 1 domain controller. have doubts. what if rds license server down? how can achieve high availability in case of license server failure? possible install rds license server on 2 machines same ms license (50 per device). thanks kaustubh hi, thanks posting here. it's not supported install same cals on 2 licensing server. however, ts licensing server high availability, you may refer following article. hope helps. how provide resiliency terminal services licensing infrastructure, focusing on high availability. http://www.virtualizationadmin.com/articles-tutorials/terminal-services/licensing/terminal-services-license-server-high-availability-recovery-part1.html best regards, aiden aiden cao technet community support

RDS on Azure network coonected to on premise network

hi i want know if s possible make rds server microsoft azure network , join server on premise domain ? i have work apps in on premise domain , need build remote desktop nomad user. someone can explain how can , need gateway secure access ? need build dmz thanks hi, whether put rds in azure or on-premises network involves many factors.  example, of users connecting (lan, internet, etc.), doing when connected in terms of bandwidth usage, if remote quality of connection internet , proposed azure datacenter, bandwidth/quality of on-premises internet connection, licenses own, monthly azure cost, other usage of on-premises internet connection, etc. as amy mentioned, can place session-based rds roles on same server if needed. -tp Windows Server  >  Remote Desktop Services (Terminal Ser

Network Load Balancing Online Responders

a few questions regarding running online responder nodes in nlb cluster configuration on windows server 2008 r2, supporting smart card logon scenario. - worth nlb'ing online responders in support of smart card logon scenario? - if online responder service shuts down on 1 node, server remains up, revocation checking fail? - there load balancing technology aware of ocsp , can respond ocsp application issues (rather server)? cheers, mms_guru identity & metadirectory, hewlett-packard uk it should worth. you'd better have test in lab.   http://technet.microsoft.com/en-us/library/cc770413(ws.10).aspx Windows Server  >  Security

Clustering multiple VMs on the same lun

is possible run multiple vms on same shared lun? seem when failover takes place , lun moves secondary node, vms on lun move over, correct? or best practice create 1 shared lun per vm? thanks, nate to answer first 2 questions 'yes' , 'correct'.  third question - 1 lun per vm default configuration recommend - if okay behavior have mentioned having multiple vms on lun there not reason not use configuration.   cheers, ben Windows Server  >  Hyper-V

gsdiallo

hi, need assistance. i'm new in windows server technology find windows server 2012 attractive. standard license , install , need assistance through first steps. rds need public domain remote access on internet or it's possible private domain. test redweb it's work find users in private network not on internet. follow labs using same configration. thanks yes, can set access on internet.  of course, means need @ least 1 public ip address. you don't environment - home or business - , if business, how large is.  make assumption either home or small business environment using isp connecting internet through router linksys or other brand.  of have ability set pass-through of different ports internet internal address.  have done home system , work systems in past.  allowed me access lab in corporate environment location via remote desktop protocol (rdp) used rds , communicates on port 3389. tim

How to prevent reuse of existing computer accounts?

i remember in windows 2000 had reset or delete , recreate machine accounts before reuse name on new pc.  has apparently been "fixed." due problems old computer accounts being reused on new or reassigned hardware (garbage previous computer account retained such outdated description , software installation gpo group memberships intended previous assigned user) force new , clean machine account created each time machine joined domain. how can done? as advised originally, should able accomplish denying reset password permissions on computers in question... hth marcin Windows Server  >  Directory Services

remote desktop device redirector bus

Image
i work @ medical clinic , run 2008r2 3 virtual servers, 1 medical software, 1 exchange , active directory , 1 employees connect via rdc. sometime last week, virtual server used remote desktop stopped redirecting devices, , can't think of did cause happen. made sure group policy set allow redirection, , has rdpxxx.sys drivers. can't sure if registry doesn't have part in this, don't think does. one thing saw though, remote desktop device redirector bus not in device manager under system devices. have attached screenshot highlighting should on right, , comparison our virtual server no longer has it. i think may cause problem, , know how running again. any suggestions?  thanks, zach   i able add device in there adding legacy hardware , finding device driver in listings there.   i update once again if solved problem   edit: this fixed it. Windows Server

Root CA Cert Not Added to Trusted Root Authorities under XP/WM6 (Works On Vista) - PKI deployed via Active Directory

  hi,  i have created internal pki offline root , online enterprise intermediate ca under windows server 2008. i have deployed certificates active directory per microsoft pki infrastructure book. have strange problem in 2 root , issuing certificates added fine vista machines , root cert added trusted root certificate authorities store expected. however the windows xp clients joined same domain have 2 certificates under intermediate certificate authorities root certificate not listed under root certificate authorities store, certificates therefore untrusted machine. the same applies to windows mobile 6 (when installing manually), install root cert clicking on , says certificates have been installed when check cert in intermediate store , no trusted root cert has been added. i haven't clue what's going on, same active directory domain vista boxes seem work fine. cant find error messages on server nor xp client. the certs can viewed here: http://www.monsterserve.net/certs/issuin