Posts made by Danp
-
RE: Printer Recommendations??
@jt1001001 said in Printer Recommendations??:
High volume (500 pages/month B&W)
Is that really considered high volume? Personally, I would put that in the low volume category.
-
RE: Late Night VBA Help Needed
Not really my forte, but I would think something like this would work --
ActiveWorkbook.SaveAs _ Filename:=spdfpath & spdfname & '.xlsx'
-
RE: redSling?
It seems relatively new based on a quick Google search. What made you consider it as a viable "no code" solution? What other options are you considering?
-
RE: Random Thread - Anything Goes
@scottalanmiller Maybe autocorrect or bad voice translation?
-
RE: New server q's
Spinning disks should always be RAID 10. You may want to check the difference in pricing if you went with SSDs.
Questions for you --
- What is your budget?
- Have you considered refurb instead of new?
- What type of workload?
- What hypervisor will it be running?
- Any Windows VMs?
-
RE: Miscellaneous Tech News
How Citrix dropped the ball on Xen ... according to Citrix
-
RE: Edge works, Chrome does not -
What version of Chrome? They just released v106, so maybe that is a factor. Is there anything in your environment that would require a new release to be whitelisted?
-
RE: How to Backup Patterson Dental EagleSoft Software
Can't you use dbbackup to perform an online backup? I believe that is what was used in some software that I previously used.
-
RE: Random Thread - Anything Goes
@gjacobse said in Random Thread - Anything Goes:
Boy - is he going to be disappointed... We still don't have flying cars... much less hovering towns, cities or homes...
They still have ~40 years to develop all that stuff.
-
RE: Live migration Proxmox?
@Pete-S Why are you considering the move from xcp-ng?
-
RE: Powershell "-eq" operator and "False"
if ($UserE.enabled -eq "False") {
Try
if ($UserE.enabled -eq $False) {
if ($UserE.enabled -ne "True") {...
This works, but not in the way you think. It would likely give the incorrect result when
enabled
is $True. -
RE: Miscellaneous Tech News
Mars probe running Windows 98 receives software update after two decades
-
RE: Windows Server 2022 and Suspect Edge Instability
@scottalanmiller said in Windows Server 2022 and Suspect Edge Instability:
KVM: entry failed, hardware error 0x80000021
Assume that you've read this thread.
-
RE: Task Schedule Failed
@WrCombs Does the software run correctly via command line when you are logged in as the admin user?