A bunch of different software tools all use the Unix-specific pwd module and so are not runnable on Windows. The module only has a few functions associated with the user and the password file.
From first look it seems it would be something that could be duplicated on a Windows machine. As I can't find one I assume that there must be a show stopper.
Does anyone know what the technical challenge is in creating a Windows version of pwd module?
pwd
command has nothing to do with passwords - it simply prints the current working directory and is equivalent tocd
(with no arguments) on Windows. – Supposed